/* Reset and base layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Color palette based on sacred frequencies and mathematical constants */
:root {
    /* Golden ratio (Phi) influenced colors for divine balance */
    --phi-gold: #d4af37; 
    --phi-accent: #b69121;
    
    /* Pi influenced blues/purples for cosmic connection */
    --pi-deep: #3a1f5d;
    --pi-medium: #4b2b80;
    --pi-light: #6a3cb3;
    
    /* 432Hz frequency - order and beginning (earth/foundation tones) */
    --freq-432-dark: #22243a;  /* Deeper blue for cosmic order */
    --freq-432-medium: #344168; /* Midnight blue representing cosmic order */
    --freq-432-light: #4c5d94;  /* Lighter blue for origin energy */
    
    /* 528Hz frequency - love and miracle healing (heart chakra/green tones) */
    --freq-528-dark: #0c6a47;  /* Deep emerald for heart healing */
    --freq-528-medium: #0e8a58; /* Emerald green of love frequency */
    --freq-528-light: #19bd7b;  /* Bright healing green for love energy */
    
    /* 639Hz frequency - higher consciousness (crown chakra/violet-white tones) */
    --freq-639-dark: #4f2b7a;  /* Deep violet for spiritual awakening */
    --freq-639-medium: #7a39c0; /* Vibrant violet for pineal activation */
    --freq-639-light: #9a6bdb;  /* Light violet for higher consciousness */
    --freq-639-accent: #e8e0ff; /* Ethereal light accent for spiritual illumination */
    
    /* Neutrals */
    --dark-bg: #0f1622;  /* Deeper space-like background */
    --medium-bg: #1b2736; /* Cosmic medium background */
    --light-text: #f0f2f5;
    --medium-text: #dadddf;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg), var(--freq-432-dark), var(--freq-639-dark), var(--freq-528-dark));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--light-text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Animated background gradient */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Interactive background particles for mobile */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(154, 107, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(25, 189, 123, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(20px) rotate(240deg);
        opacity: 0.4;
    }
}

header {
    background: linear-gradient(to right, var(--freq-432-dark), var(--freq-639-dark));
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--phi-gold);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 30px rgba(122, 57, 192, 0.15);
    position: relative;
    width: 100%;
}

header .header-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-left {
    display: flex;
    align-items: center;
}

/* Main container for all content */
.container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

/* Desktop layout improvements */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .content-section {
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
    
    .feature {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .button-container {
        max-width: 600px;
        margin: 2rem auto;
        justify-content: center;
    }
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--freq-639-medium), var(--freq-639-dark));
    border: 1px solid var(--freq-639-accent);
    color: var(--phi-gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(154, 107, 219, 0.4);
    z-index: 2;
    margin-left: 15px;
}

.share-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(154, 107, 219, 0.7);
}

.share-button:active {
    transform: scale(0.95);
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 70%, rgba(154, 107, 219, 0.1));
    pointer-events: none;
    z-index: 1;
}

header img {
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
    border: 2px solid var(--phi-gold);
    padding: 3px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(154, 107, 219, 0.5);
}

header img:hover {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(154, 107, 219, 0.8);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--phi-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(154, 107, 219, 0.4);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Responsive title sizing */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.4rem;
    }
}

.version-indicator {
    font-size: 0.9rem;
    margin-left: 15px;
    color: var(--phi-gold);
    background: linear-gradient(135deg, var(--freq-432-dark), var(--freq-639-dark));
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--phi-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 12px rgba(154, 107, 219, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.version-indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 18px rgba(154, 107, 219, 0.5);
}

.version-details {
    position: absolute;
    top: 130%;
    left: 0;
    width: 200px;
    max-width: 200px;
    background: linear-gradient(135deg, var(--freq-639-dark), var(--freq-432-dark));
    border-radius: 8px;
    padding: 0.8rem;
    border: 1px solid var(--phi-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(154, 107, 219, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    z-index: 1000;
    box-sizing: border-box;
}

/* Mobile version details positioning */
@media (max-width: 480px) {
    .version-details {
        position: absolute;
        top: 100%;
        left: auto;
        right: 0;
        width: 250px;
        max-width: calc(100vw - 20px);
        padding: 0.8rem;
        border-radius: 8px;
        transform: translateY(10px);
        margin-top: 5px;
    }
    
    .version-details::before {
        display: none;
    }
    
    .version-indicator:hover .version-details,
    .version-indicator.active .version-details {
        transform: translateY(0);
    }
}

.version-details::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--freq-639-dark), var(--freq-432-dark));
    transform: rotate(45deg);
    border-left: 1px solid var(--phi-gold);
    border-top: 1px solid var(--phi-gold);
}

.version-details p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.85rem;
    text-align: left;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.version-indicator:hover .version-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.version-indicator.active .version-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.version-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--freq-528-light), var(--freq-639-accent));
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 8px var(--freq-639-accent);
    animation: pulse-small 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-small {
    0% {
        box-shadow: 0 0 5px var(--freq-639-accent);
        background: linear-gradient(135deg, var(--freq-528-light), var(--freq-639-accent));
    }
    50% {
        box-shadow: 0 0 10px var(--freq-639-light);
        background: linear-gradient(135deg, var(--freq-639-light), var(--freq-528-medium));
    }
    100% {
        box-shadow: 0 0 5px var(--freq-639-accent);
        background: linear-gradient(135deg, var(--freq-528-light), var(--freq-639-accent));
    }
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    flex: 1;
}

.feature {
    background: linear-gradient(rgba(12, 106, 71, 0.6), rgba(79, 43, 122, 0.8)), 
                url('https://www.nateofearth.xyz/ipfs/nobanner') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(154, 107, 219, 0.3);
    border: 1px solid var(--phi-gold);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(154, 107, 219, 0.3), transparent 70%);
    pointer-events: none;
}

.feature h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    font-weight: bold;
    color: var(--freq-639-accent);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(154, 107, 219, 0.7);
    position: relative;
}

.feature p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.8;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.button-container a,
.button-container button {
    text-decoration: none;
    color: var(--light-text);
    background: linear-gradient(to bottom, var(--freq-528-medium), var(--freq-432-dark));
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid var(--freq-639-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(20% - 10px);
    min-width: 120px;
    max-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(122, 57, 192, 0.15);
    position: relative;
    overflow: hidden;
}

.button-container a::after,
.button-container button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(154, 107, 219, 0.2), transparent);
    transition: 0.5s;
}

.button-container a:hover::after,
.button-container button:hover::after {
    left: 100%;
}

.button-container a:hover,
.button-container button:hover {
    background: linear-gradient(to bottom, var(--freq-639-medium), var(--freq-528-dark));
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(122, 57, 192, 0.3);
    border-color: var(--freq-639-light);
}

.button-container a i,
.button-container button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.content-section {
    background: linear-gradient(135deg, var(--freq-432-medium), var(--freq-639-dark));
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    border: 2px solid var(--phi-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(154, 107, 219, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, rgba(25, 189, 123, 0.1), transparent 60%);
    pointer-events: none;
}

.content-section h3 {
    color: var(--freq-639-accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.content-section p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Section Images */
.section-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 0.25rem;
    box-shadow: none;
    border: none;
    display: block;
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.01);
}

/* Section Content Container */
.section-content {
    padding: 0 5px 0.5rem 5px;
}

.content-section h3 {
    color: var(--phi-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
}

.content-section p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 100%;
}

.final-section {
    background: linear-gradient(135deg, var(--freq-639-dark), var(--freq-528-dark));
    border: 2px solid var(--phi-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.3);
}

.final-section h3 {
    color: var(--phi-gold);
    font-size: 2.2rem;
    text-align: center;
}

.final-section p {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    /* Remove any text animations or effects */
    animation: none !important;
    transition: none !important;
}

.share-cta {
    background: linear-gradient(135deg, var(--freq-528-dark), var(--freq-639-medium));
    padding: 3rem 2rem;
    margin: 3rem 0 0 0;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--phi-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.share-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
    pointer-events: none;
}

.share-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.share-cta h2 {
    font-size: 2.5rem;
    color: var(--phi-gold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.5);
}

.share-cta p {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.cta-share-btn,
.cta-copy-btn {
    background: linear-gradient(135deg, var(--freq-639-medium), var(--freq-432-dark));
    border: 2px solid var(--phi-gold);
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(154, 107, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-share-btn::after,
.cta-copy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: 0.5s;
}

.cta-share-btn:hover::after,
.cta-copy-btn:hover::after {
    left: 100%;
}

.cta-share-btn:hover,
.cta-copy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.4);
    border-color: var(--freq-639-light);
}

.cta-share-btn:active,
.cta-copy-btn:active {
    transform: translateY(-1px) scale(1.02);
}



/* Back to Top Button */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: #7a39c0 !important;
    border: 2px solid #d4af37 !important;
    border-radius: 50% !important;
    color: #d4af37 !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 999999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateZ(0) !important;
    will-change: opacity !important;
    top: auto !important;
    left: auto !important;
}

.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

footer {
    background: linear-gradient(to right, var(--freq-432-dark), var(--freq-639-dark));
    padding: 1.5rem;
    border-top: 1px solid var(--phi-gold);
    margin-top: 2rem;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content p {
    color: var(--light-text);
    margin: 0;
}

.frequency-display {
    display: flex;
    gap: 1rem;
}

.freq-indicator {
    background: linear-gradient(135deg, var(--freq-528-medium), var(--freq-639-medium));
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--phi-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Enhanced mobile interactivity */
@media (max-width: 768px) {
    body {
        background-size: 600% 600%;
        animation-duration: 12s;
    }
    
    body::before {
        background: 
            radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 90% 10%, rgba(154, 107, 219, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(25, 189, 123, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 30% 70%, rgba(79, 43, 122, 0.1) 0%, transparent 30%);
        animation-duration: 15s;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .version-indicator {
        margin-left: 10px;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }
    
    .version-indicator:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(154, 107, 219, 0.6);
    }
    
    .feature {
        background-attachment: scroll;
        position: relative;
        overflow: hidden;
    }
    
    .feature::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
            rgba(212, 175, 55, 0.1) 0%, 
            transparent 25%, 
            rgba(154, 107, 219, 0.1) 50%, 
            transparent 75%, 
            rgba(25, 189, 123, 0.1) 100%);
        animation: shimmer 8s ease-in-out infinite;
        pointer-events: none;
        z-index: 1;
    }
    
    @keyframes shimmer {
        0%, 100% { opacity: 0.3; transform: translateX(-100%); }
        50% { opacity: 0.7; transform: translateX(100%); }
    }
    
    .feature h2,
    .feature p {
        position: relative;
        z-index: 2;
    }
    
    .feature h2 {
        font-size: 2rem;
    }
    
    .feature p {
        font-size: 1.1rem;
    }
    
    .button-container a,
    .button-container button {
        flex: 1 1 calc(50% - 10px);
        min-width: 100px;
        transition: all 0.3s ease;
    }
    
    .button-container a:active,
    .button-container button:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(122, 57, 192, 0.5);
    }
    
    .content-section {
        position: relative;
        transition: all 0.3s ease;
    }
    
    .content-section:active {
        transform: scale(0.99);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(154, 107, 219, 0.3);
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .section-image {
        height: auto;
        min-height: 200px;
        max-height: 250px;
        border-radius: 0;
        object-fit: cover;
        width: 100%;
    }
    
    .section-content {
        padding: 0 0.25rem 0.5rem 0.25rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .content-section p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .frequency-display {
        justify-content: center;
    }
    
    .freq-indicator {
        transition: all 0.3s ease;
    }
    
    .freq-indicator:active {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
    
    .share-cta {
        margin: 2rem 0 0 0;
        padding: 2rem 1rem;
    }
    
    .share-cta h2 {
        font-size: 2rem;
    }
    
    .share-cta p {
        font-size: 1.1rem;
    }
    
    .share-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-share-btn,
    .cta-copy-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    

}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }
    
    .content-section {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    
    .section-content {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    header {
        padding: 1rem;
    }
    
    header .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .header-left {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }
    
    header img {
        height: 40px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    header h1 {
        font-size: 1.4rem;
        text-align: left;
        margin: 0;
        white-space: nowrap;
        line-height: 1.2;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .version-indicator {
        margin-left: 8px;
        font-size: 0.7rem;
        padding: 3px 6px;
        flex-shrink: 0;
    }
    
    .share-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-left: 8px;
        flex-shrink: 0;
    }
    
    .button-container a,
    .button-container button {
        flex: 1 1 100%;
        margin-bottom: 0.5rem;
    }
    
    .content-section {
        padding: 0;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --phi-gold: #ffdd44;
        --light-text: #ffffff;
        --dark-bg: #000000;
    }
}

/* Sacred Logo Styles */
.sacred-logo-container {
    margin: 10px 0;
}

.sacred-logo {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(102, 51, 153, 0.3);
}

.sacred-logo:hover {
    transform: scale(1.1);
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
}

/* VIEWPORT CENTERED MODAL SYSTEM */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 500px);
    max-height: 80vh;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px 30px 30px;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 51, 153, 0.3);
}

#timelineModal .modal-content {
    max-width: 600px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #639;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #FFD700;
}

/* Logo Modal Content */
.logo-expanded {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 20px 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(102, 51, 153, 0.2);
}

.logo-description h3 {
    color: #639;
    margin: 20px 0 10px 0;
    font-size: 1.5em;
}

.logo-description p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1em;
}

/* APK Modal Content */
.apk-icon {
    font-size: 4rem;
    color: var(--freq-639-medium);
    margin: 20px 0;
}

.apk-title {
    color: var(--freq-639-medium);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 20px 0;
}

.apk-description {
    color: #333;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 1.1rem;
}

.youtube-subscribe-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.youtube-subscribe-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* I'm gone for now,Goodluck be back soon */
.gone-soon-style {
    margin-top: 30px;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(154, 107, 219, 0.1));
    border: 2px solid var(--phi-gold);
    text-align: center;
    animation: sacredGlow 3s ease-in-out infinite;
}

@keyframes sacredGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

.sacred-divider {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--phi-gold), transparent);
    margin: 0 auto 20px auto;
}

.sacred-time-title {
    color: var(--phi-gold);
    font-size: 1.3rem;
    margin: 15px 0;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    font-weight: 600;
}

.sacred-time-message {
    color: var(--freq-639-medium);
    font-size: 1rem;
    margin: 15px 0 20px 0;
    font-style: italic;
    line-height: 1.4;
}

.gone-soon-access {
    background: linear-gradient(135deg, var(--phi-gold), var(--freq-528-medium));
    color: var(--dark-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.gone-soon-access:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    filter: brightness(1.1);
}

.gone-soon-access i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Sacred Timeline Styles */
.sacred-timeline {
    background: linear-gradient(135deg, var(--dark-bg), var(--medium-bg));
    padding: 4rem 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.sacred-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(154, 107, 219, 0.1), transparent 70%);
    pointer-events: none;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-title {
    text-align: center;
    color: var(--phi-gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--freq-432-medium), var(--freq-528-medium), var(--freq-639-medium));
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Sacred Countdown Styles */
.sacred-countdown {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(154, 107, 219, 0.15), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.sacred-countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.countdown-title {
    color: var(--phi-gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

.countdown-subtitle {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--phi-gold);
    background: linear-gradient(135deg, var(--freq-432-medium), var(--freq-528-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    color: var(--light-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.countdown-message {
    color: var(--light-text);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile responsiveness for countdown */
@media (max-width: 768px) {
    .countdown-display {
        gap: 1rem;
    }
    
    .countdown-unit {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-height: 2.5rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .countdown-subtitle {
        font-size: 1rem;
    }
}

.timeline-item:hover {
    transform: translateY(-10px);
    background: rgba(154, 107, 219, 0.2);
    box-shadow: 0 10px 30px rgba(154, 107, 219, 0.3);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--freq-639-medium), var(--phi-gold));
    border: 3px solid var(--light-text);
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(154, 107, 219, 0.6);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.timeline-year {
    color: var(--phi-gold);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.timeline-label {
    color: var(--light-text);
    font-size: 0.9rem;
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
}



/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .timeline-track {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-track::before {
        width: 3px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--freq-432-medium), var(--freq-528-medium), var(--freq-639-medium));
    }
    
    .timeline-item {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Clickable Title Styles */
.clickable-title {
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.clickable-title:hover {
    color: #FFD700;
}

.title-details {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(102, 51, 153, 0.3);
    z-index: 1000;
    white-space: nowrap;
    margin-top: 5px;
}

.title-details.show {
    display: block;
}

.title-details p {
    margin: 0;
    color: #639;
    font-size: 0.9em;
    font-weight: 500;
}

/* Mobile Responsiveness for Logo */
@media (max-width: 768px) {
    .sacred-logo {
        width: 50px;
        height: 50px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .logo-expanded {
        max-width: 250px;
    }
    
    .logo-description h3 {
        font-size: 1.3em;
    }
    
    .logo-description p {
        font-size: 1em;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .title-details {
        right: 0;
        left: auto;
        white-space: normal;
        width: 200px;
    }
}
