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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #0f2027 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 200px 200px, 300px 300px, 150px 150px;
    pointer-events: none;
    animation: starTwinkle 20s linear infinite;
    z-index: -1;
}

@keyframes starTwinkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Ad Container Styles */
.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.ad-wrapper {
    max-width: 728px;
    width: 100%;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-ad {
    margin: 30px 0 20px 0;
}

.footer-ad {
    margin: 20px 0 10px 0;
}

@media (max-width: 768px) {
    .ad-wrapper {
        max-width: 320px;
        min-height: 50px;
        padding: 8px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 60, 114, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

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

.nav-link {
    color: #d4e1f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #d4e1f1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Styles */
.page {
    display: none;
    min-height: 100vh;
    padding: 2rem 0;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero-section {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #b8c6db;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #d4e1f1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c6db;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(45deg, #764ba2 0%, #667eea 100%);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

/* Features Section */
.features-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

/* What is Omegaverse Section */
.what-is-section {
    background: rgba(255, 255, 255, 0.05);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4rem;
    color: #d4e1f1;
}

.dynamics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.dynamic-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dynamic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.alpha-card {
    border-image: linear-gradient(45deg, #ff6b6b, #ee5a24) 1;
}

.alpha-card:hover {
    border-image: linear-gradient(45deg, #ff6b6b, #ee5a24) 1;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.beta-card {
    border-image: linear-gradient(45deg, #74b9ff, #0984e3) 1;
}

.beta-card:hover {
    border-image: linear-gradient(45deg, #74b9ff, #0984e3) 1;
    box-shadow: 0 15px 40px rgba(116, 185, 255, 0.3);
}

.omega-card {
    border-image: linear-gradient(45deg, #fd79a8, #e84393) 1;
}

.omega-card:hover {
    border-image: linear-gradient(45deg, #fd79a8, #e84393) 1;
    box-shadow: 0 15px 40px rgba(253, 121, 168, 0.3);
}

.sigma-card {
    border-image: linear-gradient(45deg, #a29bfe, #6c5ce7) 1;
}

.sigma-card:hover {
    border-image: linear-gradient(45deg, #a29bfe, #6c5ce7) 1;
    box-shadow: 0 15px 40px rgba(162, 155, 254, 0.3);
}

.dynamic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dynamic-symbol {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
}

.dynamic-card h3 {
    font-size: 1.5rem;
    color: #ffd700;
}

.dynamic-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #d4e1f1;
}

.traits-list {
    list-style: none;
}

.traits-list li {
    padding: 0.5rem 0;
    color: #b8c6db;
    position: relative;
    padding-left: 1.5rem;
}

.traits-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.omegaverse-history {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.omegaverse-history h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.omegaverse-history p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #d4e1f1;
}

/* How to Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.step p {
    line-height: 1.6;
    color: #d4e1f1;
}

.quiz-tips {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.quiz-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 0.8rem 0;
    color: #d4e1f1;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Why Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.benefit-item p {
    line-height: 1.6;
    color: #d4e1f1;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffd700;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.6;
    color: #d4e1f1;
}

/* Quiz Page Styles */
.quiz-page {
    padding-top: 120px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-bottom: 2rem;
    position: relative;
}

.quiz-page.active {
    display: flex !important;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 5%;
}

.progress-text {
    font-size: 1rem;
    color: #b8c6db;
}

.question-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.question-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.question-text {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 300;
}

.options-container {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.option-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.option-button:hover::before {
    left: 100%;
}

.option-letter {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.option-text {
    flex: 1;
    z-index: 1;
}

.option-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.option-button:hover .option-letter {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Loading Page */
.loading-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.loading-container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    color: #b8c6db;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Results Page */
.results-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px;
}

.results-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
}

.result-badge {
    margin-bottom: 2rem;
}

.result-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInScale 0.8s ease-out;
}

.result-icon.alpha {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
}

.result-icon.beta {
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    box-shadow: 0 0 30px rgba(116, 185, 255, 0.3);
}

.result-icon.omega {
    background: linear-gradient(45deg, #fd79a8, #e84393);
    box-shadow: 0 0 30px rgba(253, 121, 168, 0.3);
}

.result-icon.sigma {
    background: linear-gradient(45deg, #a29bfe, #6c5ce7);
    box-shadow: 0 0 30px rgba(162, 155, 254, 0.3);
}

.result-icon::before {
    content: attr(data-symbol);
    color: white;
    font-weight: bold;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.result-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.result-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #d4e1f1;
    margin-bottom: 3rem;
}

.result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.strength-section, .challenge-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.result-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.result-details p {
    line-height: 1.5;
    color: #d4e1f1;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-button, .retake-button, .back-home-button {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.share-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.retake-button, .back-home-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.share-button:hover, .retake-button:hover, .back-home-button:hover {
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: white;
}

.modal h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.share-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #d4e1f1;
}

.copy-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #b8c6db;
    line-height: 1.6;
}

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

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

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

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

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

.social-links span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #b8c6db;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #b8c6db;
}

.footer-bottom a {
    color: #d4e1f1;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(30, 60, 114, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .question-text {
        font-size: 1.4rem;
    }

    .result-title {
        font-size: 2rem;
    }

    .result-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-button, .retake-button, .back-home-button {
        width: 200px;
    }

    .modal-content {
        margin: 30% auto;
        width: 95%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .dynamics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }
}

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

    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .quiz-page {
        padding-top: 70px;
    }

    .dynamics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .question-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .question-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .question-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .option-button {
        padding: 1rem;
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .option-letter {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .strength-section, .challenge-section {
        padding: 1.5rem;
    }

    .feature-card, .benefit-item {
        padding: 2rem;
    }

    .quiz-tips, .omegaverse-history {
        padding: 2rem;
    }
}

/* Animations for page transitions */
.page {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page.active {
    opacity: 1;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 4rem 0;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #b8c6db;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.legal-section p {
    line-height: 1.7;
    color: #d4e1f1;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: #d4e1f1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #ffd700;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.legal-footer p {
    color: #b8c6db;
    margin-bottom: 2rem;
    font-style: italic;
}

.back-home-link {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-home-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(45deg, #764ba2, #667eea);
}

/* Legal page responsive design */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 2rem 0;
    }

    .legal-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}