* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0e0e10;
    --bg-secondary: #18181b;
    --bg-tertiary: #1f1f23;
    --accent-primary: #53fc18;
    --accent-secondary: #9147ff;
    --accent-hover: #772ce8;
    --text-primary: #efeff1;
    --text-secondary: #adadb8;
    --text-muted: #7e7e8c;
    --border-color: #2d2d35;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(24, 24, 27, 0.9);
}

.header .container,
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.logo a {
    color: var(--accent-primary);
    text-decoration: none;
}

.logo a:hover {
    color: var(--accent-primary);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border-color);
    margin: 0 5px;
    flex-shrink: 0;
}

.logo .verified-badge {
    width: 36px;
    height: 36px;
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.5), 0 0 30px rgba(83, 252, 24, 0.3);
}

.logo .verified-badge svg {
    width: 22px;
    height: 22px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: var(--bg-primary);
    background-image: url('comp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    text-shadow: none;
    position: relative;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    filter: none;
}

.verified-badge::before {
    display: none;
}

.verified-badge::after {
    display: none;
}

.verified-badge svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.official-badge-img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    background: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-shadow: none;
    filter: none;
    outline: none;
    vertical-align: middle;
    mix-blend-mode: normal;
    opacity: 0.5;
}

@keyframes ripple-out {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(83, 252, 24, 0.5), 0 0 40px rgba(83, 252, 24, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(83, 252, 24, 0.7), 0 0 60px rgba(83, 252, 24, 0.4);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-text {
    font-size: 18px;
    color: var(--text-primary);
    max-width: 900px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Kick Button */
.kick-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(145, 71, 255, 0.3);
    text-align: center;
    letter-spacing: 0.5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.kick-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(145, 71, 255, 0.5);
    background: linear-gradient(135deg, #5fff2a 0%, #a55fff 100%);
}

.kick-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(145, 71, 255, 0.3);
}

.kick-button-header {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(145, 71, 255, 0.3);
    letter-spacing: 0.3px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.kick-button-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(145, 71, 255, 0.5);
    background: linear-gradient(135deg, #5fff2a 0%, #a55fff 100%);
}

/* Sections */
.section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 2px;
}

.section-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.subsection {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subsection:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(145, 71, 255, 0.1);
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

/* Lists */
.feature-list,
.numbered-list {
    margin: 20px 0;
    padding-left: 30px;
}

.feature-list li,
.numbered-list li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.8;
    position: relative;
}

.feature-list li::marker {
    color: var(--accent-secondary);
}

.numbered-list li::marker {
    color: var(--accent-primary);
    font-weight: 600;
}

.feature-list li::before {
    content: '●';
    color: var(--accent-secondary);
    position: absolute;
    left: -20px;
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .header {
        backdrop-filter: blur(5px);
    }

    .logo {
        font-size: 18px;
        gap: 8px;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .nav-link {
        font-size: 14px;
        padding: 5px 0;
    }

    .kick-button-header {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .hero {
        padding: 50px 0;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 28px;
        flex-wrap: wrap;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .kick-button {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .section-title::before {
        width: 3px;
        height: 30px;
    }

    .section-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .subsection {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .subsection-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .feature-list,
    .numbered-list {
        padding-left: 25px;
        margin: 15px 0;
    }

    .feature-list li,
    .numbered-list li {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.7;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header .container {
        padding: 12px;
        gap: 12px;
    }

    .logo {
        font-size: 16px;
    }

    .nav {
        gap: 8px;
    }

    .nav-link {
        font-size: 13px;
    }

    .kick-button-header {
        padding: 7px 14px;
        font-size: 11px;
        max-width: 180px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .kick-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 22px;
        padding-left: 12px;
    }

    .section-title::before {
        width: 3px;
        height: 25px;
    }

    .section-text {
        font-size: 14px;
    }

    .subsection {
        padding: 15px 12px;
        margin: 25px 0;
    }

    .subsection-title {
        font-size: 16px;
    }

    .feature-list,
    .numbered-list {
        padding-left: 20px;
    }

    .feature-list li,
    .numbered-list li {
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}

.subsection {
    animation: fadeIn 0.8s ease-out;
}

/* Selection */
::selection {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
}

::-moz-selection {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
}
