File size: 2,192 Bytes
04b72bb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.crawling-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.scraper-card {
  background: var(--bg-card);
  border: none;
  border-radius: var(--r3);
  padding: 48px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  transition: all var(--t-fast);
}

.scraper-card.featured {
  border: none;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-card2));
  box-shadow: var(--shadow-md), 0 20px 40px rgba(0,0,0,0.03);
}


.scraper-header {
  margin-bottom: 24px;
}

.scraper-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--tx1);
  letter-spacing: -0.8px;
  margin: 0;
}

.scraper-domain {
  font-size: 13px;
  color: var(--acc);
  font-weight: 700;
  margin-top: 4px;
}

.scraper-desc {
  font-size: 14.5px;
  color: var(--tx2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.scraper-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feat-item {
  padding: 16px 20px;
  background: var(--bg-card2);
  border: none;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--t-fast);
}

.feat-item:hover {
  border-color: var(--acc);
  background: var(--bg-card);
  transform: translateY(-2px);
}

.feat-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--tx1);
  letter-spacing: -0.2px;
}

.feat-desc {
  font-size: 12px;
  color: var(--tx3);
  line-height: 1.6;
}

.scraper-actions {
  display: flex;
  justify-content: center;
}

.scraper-main-btn {
  height: 44px;
  padding: 0 36px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 10px;
  transition: all var(--t-fast);
}

/* Info Banner */
.info-banner {
  padding: 24px 32px;
  background: var(--bg-card2);
  border: none;
  border-radius: var(--r2);
}

.info-content h4 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--tx1);
  letter-spacing: -0.2px;
}

.info-content p {
  margin: 0;
  font-size: 13px;
  color: var(--tx3);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .scraper-features {
    grid-template-columns: 1fr;
  }
  .scraper-card {
    padding: 32px 24px;
  }
}