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

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #2d1b2e 0%, #1a0f1a 50%, #0d0a0d 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

/* Header */
.header {
    margin-bottom: 50px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Main Content */
.main-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Intro Section */
.intro {
    margin-bottom: 60px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Interests Section */
.interests {
    width: 100%;
    margin-bottom: 60px;
}

.interests-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.interest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border-radius: 24px;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.interest-card.female {
    border-color: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.interest-card.male {
    border-color: #00bfff;
    background: rgba(0, 30, 60, 0.3);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
}

.interest-card.transgender {
    border-color: #da70d6;
    background: rgba(60, 20, 60, 0.3);
    box-shadow: 0 0 20px rgba(218, 112, 214, 0.2);
}

.interest-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.interest-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.interest-label {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* Age Verification Section */
.age-verification {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.verify-btn {
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    background: linear-gradient(135deg, #a4d65e 0%, #8bc34a 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(164, 214, 94, 0.3);
    min-width: 300px;
    text-transform: none;
}

.verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(164, 214, 94, 0.5);
    background: linear-gradient(135deg, #b8e86f 0%, #9ccc3f 100%);
}

.verify-btn:active {
    transform: translateY(-1px);
}

/* Legal Section */
.legal-section {
    width: 100%;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-text {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.3px;
}

.legal-text:last-child {
    margin-bottom: 0;
}

.legal-text a {
    color: #00bfff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #ff1493;
}

/* Exit Section */
.exit-section {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exit-link {
    font-size: 16px;
    color: #00bfff;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.exit-link:hover {
    color: #ff1493;
}

/* Content Warning */
.content-warning {
    width: 100%;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.warning-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

.warning-text {
    font-size: 13px;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.3px;
}

.warning-text:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    width: 100%;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.logo-item svg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-label {
    font-size: 11px;
    color: #808080;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

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

    .logo-text {
        font-size: 24px;
    }

    .intro-text {
        font-size: 16px;
    }

    .interests-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 20px;
    }

    .interest-card {
        padding: 20px 15px;
    }

    .interest-icon {
        width: 80px;
        height: 80px;
    }

    .interest-label {
        font-size: 14px;
    }

    .verify-btn {
        padding: 16px 40px;
        font-size: 16px;
        min-width: 250px;
    }

    .legal-section,
    .content-warning {
        padding: 20px;
    }

    .legal-text,
    .warning-text {
        font-size: 12px;
    }

    .footer-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .logo-text {
        font-size: 20px;
    }

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

    .interests-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .interests-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .interest-card {
        padding: 15px 10px;
    }

    .interest-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .interest-label {
        font-size: 12px;
    }

    .verify-btn {
        padding: 14px 30px;
        font-size: 14px;
        min-width: 200px;
    }

    .legal-section,
    .content-warning {
        padding: 15px;
    }

    .legal-text,
    .warning-text {
        font-size: 11px;
    }

    .footer-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .logo-item svg {
        width: 60px;
        height: 60px;
    }

    .logo-label {
        font-size: 10px;
    }
}
