/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #6B46C1;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCE7F3 50%, #F3E8FF 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 50%, #6B46C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #6B46C1;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-links a:hover {
    color: #EC4899;
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCE7F3 50%, #F3E8FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7C3AED;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #EC4899;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #8B5CF6;
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #6B46C1;
    border: 2px solid #EC4899;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Quiz Section */
.quiz-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #8B5CF6;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 12.5%;
}

.progress-text {
    color: #8B5CF6;
    font-size: 0.9rem;
    font-weight: 500;
}

.question {
    display: none;
}

.question.active {
    display: block;
}

.question h3 {
    font-size: 1.5rem;
    color: #6B46C1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.options {
    display: grid;
    gap: 1rem;
}

.option {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 15px;
    color: #6B46C1;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: #EC4899;
    transform: translateY(-2px);
}

.option.selected {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    border-color: #EC4899;
    transform: scale(1.02);
}

.quiz-result {
    text-align: center;
}

.quiz-result h3 {
    font-size: 2rem;
    color: #6B46C1;
    margin-bottom: 2rem;
}

.personality-type h4 {
    font-size: 1.5rem;
    color: #EC4899;
    margin-bottom: 1rem;
}

.personality-type p {
    color: #7C3AED;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.compatibility-tips h4 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

.compatibility-tips ul {
    text-align: left;
    color: #8B5CF6;
    margin-bottom: 2rem;
}

.compatibility-tips li {
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #FCE7F3 0%, #F3E8FF 50%, #FFFFFF 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(20px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #8B5CF6;
    line-height: 1.6;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FCE7F3 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-content {
    padding: 2rem;
}

.game-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B46C1;
    margin-bottom: 1rem;
}

.game-content p {
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.game-stats span {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.game-button {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

/* Success Stories Section */
.success-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 50%, #FFFFFF 100%);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(20px);
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.quote {
    font-size: 1.1rem;
    color: #6B46C1;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quote::before {
    content: '"';
    font-size: 2rem;
    color: #EC4899;
    font-weight: bold;
}

.quote::after {
    content: '"';
    font-size: 2rem;
    color: #EC4899;
    font-weight: bold;
}

.author h4 {
    color: #EC4899;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author span {
    color: #8B5CF6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 50%, #8B5CF6 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .cta-button.primary {
    background: rgba(255, 255, 255, 0.9);
    color: #6B46C1;
    backdrop-filter: blur(20px);
}

.cta-section .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-features span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #6B46C1;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: #6B46C1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #8B5CF6;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #8B5CF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #EC4899;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
    color: #8B5CF6;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid,
    .games-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quiz-container {
        padding: 2rem;
    }
    
    .feature-card,
    .success-card {
        padding: 2rem;
    }
}

