/* Sovereign Intelligence Page Styles */

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.sovereign-hero {
    padding: 6rem 0 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 1px 50px rgba(51, 110, 165, 0.3);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    box-shadow: 0 1px 200px rgba(51, 110, 165, 0.5);
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-text .description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.badge-new {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center; /* Ensure buttons are vertically aligned */
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 56px; /* Fixed height for consistency */
    padding: 0 2rem; /* Horizontal padding only */
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 240px;
    border: 1px solid transparent;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 0; /* Remove any default margins */
}

.hero-actions .btn-primary {
    background: var(--button-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 94, 219, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 94, 219, 0.5);
    background: var(--button-hover-gradient);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Podcast Section */
.podcast-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
}

.podcast-episodes {
    max-width: 1000px;
    margin: 0 auto;
}

.episodes-list {
    margin-bottom: 2rem;
}

.episode-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(30, 30, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.episode-item:hover {
    background: rgba(30, 30, 46, 0.6);
    border-color: rgba(255, 209, 102, 0.3);
}

.episode-item.active {
    background: rgba(255, 209, 102, 0.1);
    border-color: #FFD166;
}

.episode-item.hidden {
    display: none;
}

.episodes-toggle {
    text-align: center;
    margin-top: 1rem;
}

.episodes-toggle .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.episodes-toggle .btn i {
    transition: transform 0.3s ease;
}

.episodes-toggle .btn.expanded i {
    transform: rotate(180deg);
}

.episode-number {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.episode-content {
    flex: 1;
}

.episode-content h4 {
    margin: 0 0 0.25rem 0;
    color: white;
    font-size: 1.1rem;
}

.episode-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.episode-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.episode-play-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
    cursor: pointer;
}

.episode-item:hover .episode-play-btn {
    background: var(--accent-blue);
}

.podcast-player-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 30, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.podcast-info {
    flex: 1;
    text-align: left;
}

.podcast-info h3 {
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.podcast-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.audio-player {
    flex: 2;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-btn {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.player-btn:hover {
    transform: scale(1.1);
    background: rgba(59, 94, 219, 0.8);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

#volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Pillars Grid */
.section-header {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center !important;
    display: block;
}

#pillars-title {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: fit-content !important;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.pillar-card {
    background: var(--card-background);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Buy Section */
.buy-section {
    padding: 4rem 0 6rem;
}

.buy-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.buy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

.buy-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buy-card .subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.benefits-list li {
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: transform 0.2s;
}

.benefits-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.benefits-list li i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.price-tag span {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    vertical-align: super;
}

.buy-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--button-gradient);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 94, 219, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 94, 219, 0.5);
    background: var(--button-hover-gradient);
}

.btn-secondary {
    margin-bottom: 2rem;
}

.btn-secondary:hover {
    box-shadow: 0 1px 100px rgba(99, 102, 241, 0.4);
}

.secure-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
}

/* YouTube Series Section */
.youtube-series-section {
    background: linear-gradient(180deg, rgba(10, 14, 31, 0.5) 0%, rgba(20, 25, 45, 0.8) 100%);
    padding: 4rem 0;
    position: relative;
}

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

.youtube-card {
    background: rgba(30, 35, 55, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.youtube-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #818cf8;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.video-duration i {
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

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

    .book-cover-mockup {
        margin-top: 3rem;
        width: 240px;
        height: 360px;
    }
    
    .podcast-player-container {
        flex-direction: column;
        text-align: center;
    }
    
    .episode-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .episode-number {
        margin: 0 auto;
    }
    
    .episodes-toggle {
        margin-bottom: 2rem;
    }
    
    .episode-content {
        text-align: center;
    }
    
    .episode-play-btn {
        margin: 0 auto;
    }
    
    .player-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .progress-container {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    #volume-slider {
        width: 60px;
    }
}

/* Interactive Ether Display */
#ether-container {
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at center, #1a1e35 0%, #000000 70%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 4rem 0;
}

#initiate-btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 210, 255, 0.5);
    color: #00d2ff;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

#initiate-btn:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
    border-color: #fff;
    color: #fff;
}

/* ===================================
   ACCOUNT CREATION PROMPT
   ================================== */

.account-prompt {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease;
}

.account-prompt-content {
    text-align: center;
}

.prompt-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.prompt-icon i {
    font-size: 2.5rem;
    color: white;
}

.account-prompt h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.prompt-benefits {
    display: grid;
    gap: 0.75rem;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-create-account {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-create-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Unlock Message Box */
.unlock-message-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.unlock-message-box:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.08));
    border-color: rgba(102, 126, 234, 0.4);
}

.unlock-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.unlock-content {
    flex: 1;
    text-align: center;
}

.unlock-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: white;
}

.unlock-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.unlock-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    color: white;
}

@media (max-width: 768px) {
    .unlock-message-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .unlock-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .unlock-content h3 {
        font-size: 1.5rem;
    }
    
    .unlock-content p {
        font-size: 1rem;
    }
}


/* Premium Button Shine Enhancement - All Buttons */
.btn:not(.nav-link), .buy-btn, .player-btn, .episode-play-btn, .mobile-menu-btn {
    position: relative !important;
    overflow: hidden !important;
}

.btn:not(.nav-link)::after, .buy-btn::after, .player-btn::after, .episode-play-btn::after, .mobile-menu-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 80%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transform: skewX(-25deg);
            transition: none;
            z-index: -1;
        }

.btn:not(.nav-link):hover::after, .buy-btn:hover::after, .player-btn:hover::after, .episode-play-btn:hover::after, .mobile-menu-btn:hover::after {
    left: 150%;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Ensure content stays above glint */
.btn i, .btn span, .buy-btn i, .buy-btn span, .player-btn i, .episode-play-btn i, .mobile-menu-btn i {
    position: relative;
    z-index: 6;
}

