File size: 1,943 Bytes
ee00155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Extension Section Styles */
.extension-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.extension-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.extension-content {
    flex: 1;
    text-align: left;
}

.extension-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(227, 245, 20, 0.1);
    border: 1px solid rgba(227, 245, 20, 0.2);
    border-radius: 100px;
    color: var(--accent-yellow);
    font-size: 14px;
    margin-bottom: 24px;
}

.extension-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.extension-description {
    font-size: 18px;
    color: #999;
    margin-bottom: 32px;
    line-height: 1.6;
}

.chrome-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.chrome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.chrome-icon {
    width: 24px;
    height: 24px;
}

.extension-visual {
    flex: 1.2;
}

/* Reusing window styles but ensuring specific context */
.extension-visual .video-window-container {
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .extension-container {
        flex-direction: column-reverse;
        /* Video on top on mobile? Or text on top? usually text on top. column-reverse puts visual first if html is visual last. */
        flex-direction: column;
        text-align: center;
    }

    .extension-content {
        text-align: center;
    }
}