:root {
    --primary-purple: #8A2BE2;
    --primary-orange: #FF8C00;
    --primary-grey: #808080;
    --primary-yellow: #FFD700;
    --dark-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --hud-background: #16213e;
    --hud-primary: #00ff99;
}

/* MindsetAlchemy Brand Logo - Enhanced with Merkaba */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-emblem {
    width: 60px;
    height: 60px;
    position: relative;
    background: transparent;
    overflow: visible;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

/* True 3D Merkaba - Two interlocking tetrahedrons */
.brand-sigil {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: transparent;
    animation: merkaba3DRotate 8s linear infinite;
    transform-style: preserve-3d;
}

/* First tetrahedron pointing up */
.brand-sigil::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateY(0deg);
    width: 100%;
    height: 100%;
    background: 
        /* Front face */
        linear-gradient(45deg, transparent 30%, rgba(135,206,250,.9) 50%, transparent 70%),
        /* Right face */
        linear-gradient(-45deg, transparent 30%, rgba(135,206,250,.7) 50%, transparent 70%),
        /* Left face */
        linear-gradient(135deg, transparent 30%, rgba(135,206,250,.5) 50%, transparent 70%);
    background-size: 100% 100%;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    box-shadow: 
        0 0 20px rgba(135,206,250,.6),
        inset 0 0 15px rgba(135,206,250,.3);
}

/* Second tetrahedron pointing down */
.brand-sigil::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotateX(-60deg) rotateY(180deg);
    width: 100%;
    height: 100%;
    background: 
        /* Front face */
        linear-gradient(45deg, transparent 30%, rgba(255,0,255,.9) 50%, transparent 70%),
        /* Right face */
        linear-gradient(-45deg, transparent 30%, rgba(255,0,255,.7) 50%, transparent 70%),
        /* Left face */
        linear-gradient(135deg, transparent 30%, rgba(255,0,255,.5) 50%, transparent 70%);
    background-size: 100% 100%;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    box-shadow: 
        0 0 20px rgba(255,0,255,.6),
        inset 0 0 15px rgba(255,0,255,.3);
}

@keyframes merkaba3DRotate {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    25% { transform: translate(-50%, -50%) rotateX(90deg) rotateY(90deg) rotateZ(0deg); }
    50% { transform: translate(-50%, -50%) rotateX(180deg) rotateY(180deg) rotateZ(0deg); }
    75% { transform: translate(-50%, -50%) rotateX(270deg) rotateY(270deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg) rotateZ(0deg); }
}

/* Merkaba center core - white/light blue like the image */
.brand-sigil .center-core {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    height: 20%;
    background: radial-gradient(circle, 
        rgba(255,255,255,1) 0%, 
        rgba(135,206,250,.9) 40%, 
        rgba(255,0,255,.7) 70%, 
        transparent 100%);
    border-radius: 50%;
    animation: coreGentlePulse 4s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(255,255,255,.8),
        0 0 30px rgba(135,206,250,.4);
    z-index: 10;
}

@keyframes merkabaPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

@keyframes coreGentlePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.brand-wordmark {
    font-family: 'Orbitron', system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        #ffd173 15%, 
        #ff8c00 30%, 
        #8a2be2 50%, 
        #00ff99 70%, 
        #ffffff 85%, 
        #ffd173 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    font-size: 1.8rem;
    text-transform: none;
    white-space: nowrap;
    text-shadow: 0 0 30px rgba(138,43,226,.5);
    position: relative;
}

.brand-wordmark::before {
    content: 'MindsetAlchemy';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,.3) 0%, 
        rgba(255,140,0,.3) 50%, 
        rgba(138,43,226,.3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(2px);
    z-index: -1;
}

.brand-subtitle {
    display: block;
    font-size: .8rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,.8);
    margin-top: 2px;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(138,43,226,.3);
}

.brand-logo:hover .brand-wordmark {
    animation: brandSweep 3s ease-in-out infinite;
}

.brand-logo:hover .brand-emblem {
    animation: logoFloat 2s ease-in-out infinite;
}

.brand-logo:hover .brand-sigil {
    animation: merkabaPulse 1.5s ease-in-out infinite, merkabaGlow 2s ease-in-out infinite;
}

.brand-logo:hover .brand-sigil::before {
    animation: merkabaPulse 1.5s ease-in-out infinite 0.3s, merkabaGlow 2s ease-in-out infinite;
}

@keyframes brandSweep {
    0% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}

@keyframes merkabaGlow {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(135,206,250,.6),
            0 0 50px rgba(135,206,250,.3),
            inset 0 0 15px rgba(135,206,250,.2);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(135,206,250,.8),
            0 0 70px rgba(135,206,250,.5),
            inset 0 0 25px rgba(135,206,250,.4);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 157, 0.2) var(--hud-background);
}

body {
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

body.scrolling {
    background-color: rgba(8, 12, 16, 0.98);
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 30, 0.95);
    padding: 0.8rem 2rem;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 0 0 auto; /* Prevent stretching */
}

/* Logo styles */
.logo {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Center navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex: 1; /* Take remaining space */
    margin: 0 2rem; /* Add some margin on both sides */
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-item .emoji {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-item .nav-text {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 30, 0.95);
    padding: 0.6rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(5px);
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-item:hover .nav-text {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.nav-item:hover .emoji {
    background: rgba(138, 43, 226, 0.2);
    transform: scale(1.1);
}

.nav-item.active .emoji {
    background: rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

/* Right side auth section */
.auth-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    padding: 0 1rem;
    position: relative;
}

.language-selector {
    position: relative;
    margin: 0;
}

.language-select {
    padding: 0.7rem;
    width: auto;
    height: auto;
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.1),
        rgba(255, 140, 0, 0.1)
    );
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-select:hover {
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.2),
        rgba(255, 140, 0, 0.2)
    );
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.auth-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.1),
        rgba(255, 140, 0, 0.1)
    );
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.auth-btn .emoji {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.auth-btn .nav-text {
    position: relative;
    opacity: 1;
    transform: none;
    background: none;
    padding: 0;
    border: none;
    pointer-events: auto;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.auth-btn:hover {
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.2),
        rgba(255, 140, 0, 0.2)
    );
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.auth-btn:hover .emoji {
    transform: scale(1.2);
}

.auth-btn.icon-only {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.auth-btn.icon-only .emoji {
    font-size: 1.2rem;
    margin: 0;
}

.auth-btn.icon-only:hover {
    transform: scale(1.1);
    background: rgba(138, 43, 226, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    position: relative;
    overflow: visible;
    padding-top: 120px;
    padding-bottom: 6rem;
}

.matrix-background {
    width: 100%;
    height: 200vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.matrix-background canvas {
    width: 100%;
    height: 100%;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    animation: matrixScroll 120s linear infinite;
}

@keyframes matrixScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 100;
    padding: 4rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    justify-content: flex-start;
    align-items: center;
}

.pre-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
    animation-delay: 0.5s;
}

.pre-title h3 {
    font-size: 1.2rem;
    font-weight: 400;
    background: linear-gradient(
        45deg,
        var(--primary-orange) 15%,
        var(--primary-purple) 45%,
        var(--primary-grey) 85%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0.5rem 1rem;
}

.pre-title h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 140, 0, 0.1),
        rgba(138, 43, 226, 0.1),
        rgba(128, 128, 128, 0.1)
    );
    filter: blur(8px);
    z-index: -1;
}

.mystic-symbol {
    background: linear-gradient(
        45deg,
        var(--primary-orange),
        var(--primary-purple)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: symbolPulse 2s infinite alternate;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes symbolPulse {
    from {
        opacity: 0.7;
        transform: scale(0.95);
        filter: brightness(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

.hero-text {
    margin-bottom: 2rem;
    margin-top: 2rem;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(
        45deg,
        var(--primary-purple) 10%,
        var(--text-light) 45%,
        var(--primary-orange) 75%,
        var(--primary-purple) 90%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    padding-top: 1rem;
    animation: gradientFlow 8s linear infinite;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(138, 43, 226, 0.5);
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-purple),
        var(--primary-orange),
        var(--primary-purple),
        transparent
    );
    animation: lineGlow 3s infinite;
}

.hero-text h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(138, 43, 226, 0.1) 50%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textFloat 4s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes lineGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0);
        filter: blur(8px) brightness(1);
    }
    50% {
        transform: translateY(-5px);
        filter: blur(12px) brightness(1.2);
    }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

.highlight {
    color: var(--primary-purple);
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 2;
    margin: 3rem auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    position: relative;
    backdrop-filter: blur(5px);
    padding: 2rem;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-purple);
    opacity: 0.5;
}

.accent {
    color: var(--primary-purple);
    display: inline-block;
    margin: 0 0.5rem;
    animation: gentlePulse 4s infinite;
    font-size: 1.4rem;
}

/* CTA Button Styles */
.cta-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 8rem;
}

.oracle-globe {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 2rem auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mystic-hands {
    position: absolute;
    width: 400px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 255, 140, 0.3));
}

.hand {
    position: absolute;
    width: 120px;
    height: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9;
    stroke-linecap: round;
    stroke-width: 3;
}

.left-hand {
    left: 40px;
    transform: rotate(-15deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 160'%3E%3Cpath d='M50,0 C30,40 20,80 30,120 C35,140 45,160 50,160' stroke='rgba(0, 255, 140, 0.7)' fill='none' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    filter: drop-shadow(0 0 15px rgba(0, 255, 140, 0.4));
    animation: handGlow 2s infinite alternate;
}

.right-hand {
    right: 40px;
    transform: rotate(15deg) scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 160'%3E%3Cpath d='M50,0 C30,40 20,80 30,120 C35,140 45,160 50,160' stroke='rgba(0, 255, 140, 0.7)' fill='none' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    filter: drop-shadow(0 0 15px rgba(0, 255, 140, 0.4));
    animation: handGlow 2s infinite alternate-reverse;
}

.globe-3d {
    position: relative;
    width: 250px;
    height: 250px;
    transform-style: preserve-3d;
    z-index: 2;
}

.globe-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: globeFloat 6s ease-in-out infinite;
}

.globe-surface {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(138, 43, 226, 0.1) 0%,
        rgba(138, 43, 226, 0.2) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(5px);
    box-shadow: 
        0 0 70px rgba(138, 43, 226, 0.3),
        inset 0 0 50px rgba(138, 43, 226, 0.2);
    transform: translateZ(0);
    overflow: hidden;
    border: 2px solid rgba(138, 43, 226, 0.3);
    animation: globePulse 4s infinite alternate;
}

.globe-surface::before {
    content: '01 10 11 00 101';
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    font-family: 'Courier New', monospace;
    color: rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: symbolsFade 4s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.globe-surface::after {
    content: '1 2 3 4 5 6 7 8 9';
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: numbersSpin 15s linear infinite reverse;
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.4);
}

.globe-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 60%
    );
    opacity: 0.4;
    animation: glowPulse 4s ease-in-out infinite;
    mix-blend-mode: screen;
}

.globe-mist {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="f"><feTurbulence type="fractalNoise" baseFrequency="0.01"/></filter><rect width="100%" height="100%" filter="url(%23f)"/></svg>');
    opacity: 0.2;
    animation: mistRotate 20s linear infinite;
}

.globe-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.3),
        rgba(138, 43, 226, 0.6)
    );
    border-radius: 50%;
    filter: blur(4px);
}

.oracle-text {
    position: absolute;
    width: 120%;
    text-align: center;
    bottom: 20px;
    color: var(--text-light);
    font-size: 2rem;
    font-family: 'Times New Roman', serif;
    letter-spacing: 4px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-shadow: 
        0 0 15px rgba(138, 43, 226, 0.8),
        0 0 30px rgba(138, 43, 226, 0.4);
    animation: textGlow 3s infinite alternate;
}

.oracle-info {
    position: absolute;
    width: 200%;
    left: -50%;
    top: 40%;
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.oracle-globe:hover {
    transform: scale(1.1);
}

.oracle-globe:hover .oracle-text {
    opacity: 1;
    transform: translateY(0);
}

.oracle-globe:hover .oracle-info {
    opacity: 1;
}

.oracle-globe:hover .globe-surface {
    box-shadow: 
        0 0 90px rgba(138, 43, 226, 0.6),
        inset 0 0 70px rgba(138, 43, 226, 0.8);
}

@keyframes globeFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

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

/* Animations */
@keyframes gentlePulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes gentleCosmicPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

@keyframes gentleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.4; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.2; }
}

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

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-left {
        gap: 1rem;
    }
    
    .nav-left .about-btn .nav-text {
        display: none;  /* Hide text on mobile, keep only emoji */
    }
}

/* Core Services */
.core-services {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 6rem 0;
    padding: 2rem;
    perspective: 1000px;
    width: 100%;
    position: relative;
    z-index: 200;
}

.service-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    perspective: 1000px;
}

.main-service {
    width: 70%;
    max-width: 600px;
    clip-path: polygon(50% 0%, 100% 85%, 50% 100%, 0% 85%);
    transition: all 0.3s ease;
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.2) 0%,
        rgba(138, 43, 226, 0.3) 100%
    );
    padding: 3rem 2rem 4rem;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

/* Chakra effects */
.main-service::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(
        circle,
        rgba(138, 43, 226, 0.8) 0%,
        rgba(138, 43, 226, 0) 70%
    );
    border-radius: 50%;
    animation: chakraPulse 3s infinite;
}

.main-service::after {
    content: '☸';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.8);
    animation: chakraSpin 8s linear infinite;
}

.main-service:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(138, 43, 226, 0.3),
        0 0 50px rgba(138, 43, 226, 0.2) inset;
}

@keyframes chakraPulse {
    0% { 
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(-50%) scale(1.2);
    }
    100% { 
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes chakraSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Adjust the service icon for the main service */
.main-service .service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: rgba(138, 43, 226, 0.2);
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

/* Adjust text alignment and spacing in the main service */
.main-service h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-service p {
    max-width: 80%;
    margin: 0 auto;
    font-size: 1.1rem;
}

.secondary-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-item {
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.1) 0%,
        rgba(138, 43, 226, 0.2) 100%
    );
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(138, 43, 226, 0.1),
        0 0 15px rgba(138, 43, 226, 0.2) inset;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '✧';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.2rem;
    color: rgba(138, 43, 226, 0.6);
    animation: cornerGlow 2s infinite alternate;
}

.service-item::after {
    content: '✧';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: rgba(138, 43, 226, 0.6);
    animation: cornerGlow 2s infinite alternate-reverse;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 
        0 15px 35px rgba(138, 43, 226, 0.2),
        0 0 20px rgba(138, 43, 226, 0.2) inset;
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.2) 0%,
        rgba(138, 43, 226, 0.3) 100%
    );
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(138, 43, 226, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.service-details {
    margin-top: 1.5rem;
}

.main-desc {
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    margin: 0.8rem 0;
    color: var(--text-light);
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-purple),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::after {
    opacity: 1;
}

/* Responsive adjustments for core services */
@media (max-width: 1024px) {
    .secondary-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .main-service {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .secondary-services {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .main-service {
        width: 100%;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-item:hover {
        transform: translateY(-5px) rotateX(0deg);
    }
} 

/* Oracle Section Styles */
.oracle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
}

.crystal-globe {
    width: 200px;
    height: 200px;
    position: relative;
    margin-bottom: 1rem;
}

.globe-effect {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(138, 43, 226, 0.2) 40%,
        rgba(138, 43, 226, 0.1) 100%
    );
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.3),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
    animation: globeGlow 4s infinite alternate;
}

.globe-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.globe-shine {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 70%
    );
    top: 10%;
    left: 10%;
    transform: rotate(-45deg);
    animation: shineMove 3s infinite alternate;
}

.globe-mist {
    position: absolute;
    width: 150%;
    height: 150%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="f"><feTurbulence type="fractalNoise" baseFrequency="0.01"/></filter><rect width="100%" height="100%" filter="url(%23f)"/></svg>');
    opacity: 0.3;
    animation: mistFloat 10s infinite linear;
}

@keyframes globeGlow {
    0% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.3), inset 0 0 30px rgba(138, 43, 226, 0.3); }
    100% { box-shadow: 0 0 50px rgba(138, 43, 226, 0.5), inset 0 0 50px rgba(138, 43, 226, 0.5); }
}

@keyframes shineMove {
    0% { transform: rotate(-45deg) translateY(0); }
    100% { transform: rotate(-45deg) translateY(10px); }
}

@keyframes mistFloat {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(0) rotate(360deg); }
} 

/* Energy lines connecting the boxes */
.service-layout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(138, 43, 226, 0.5),
        transparent
    );
    transform: translate(-50%, -50%);
    animation: energyPulse 3s infinite;
}

@keyframes energyPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes cornerGlow {
    from { opacity: 0.3; text-shadow: 0 0 5px rgba(138, 43, 226, 0.3); }
    to { opacity: 0.8; text-shadow: 0 0 15px rgba(138, 43, 226, 0.8); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
} 

@keyframes globalRotate {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes symbolsFade {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

@keyframes textGlow {
    from { text-shadow: 0 0 15px rgba(138, 43, 226, 0.8), 0 0 30px rgba(138, 43, 226, 0.4); }
    to { text-shadow: 0 0 25px rgba(138, 43, 226, 0.9), 0 0 50px rgba(138, 43, 226, 0.6); }
} 

@keyframes handGlow {
    from { filter: drop-shadow(0 0 15px rgba(0, 255, 140, 0.4)); }
    to { filter: drop-shadow(0 0 25px rgba(0, 255, 140, 0.7)); }
}

@keyframes globePulse {
    from { 
        transform: scale(1);
        box-shadow: 
            0 0 70px rgba(0, 255, 140, 0.3),
            inset 0 0 50px rgba(0, 255, 140, 0.2);
    }
    to { 
        transform: scale(1.05);
        box-shadow: 
            0 0 90px rgba(0, 255, 140, 0.4),
            inset 0 0 70px rgba(0, 255, 140, 0.3);
    }
} 

.zodiac-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(138, 43, 226, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zodiacSpin 30s linear infinite;
    z-index: 1;
}

.zodiac-ring::before {
    content: '♈︎ ♉︎ ♊︎ ♋︎ ♌︎ ♍︎ ♎︎ ♏︎ ♐︎ ♑︎ ♒︎ ♓︎';
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.5rem;
    color: rgba(138, 43, 226, 0.6);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
    animation: symbolsOpacity 4s infinite alternate;
}

.numerology-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: rgba(138, 43, 226, 0.4);
    animation: numbersSpin 20s linear infinite;
}

.numerology-symbols::before {
    content: '1 ⚀ 2 ⚁ 3 ⚂ 4 ⚃ 5 ⚄ 6 ⚅ 7 8 9';
    position: absolute;
    animation: fadeInOut 4s infinite alternate;
}

.astrology-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: rgba(138, 43, 226, 0.3);
    animation: astrologyFloat 15s linear infinite reverse;
}

.astrology-symbols::before {
    content: '☉ ☽ ☿ ♀ ♂ ♃ ♄ ⛢ ♆ ♇';
    position: absolute;
    animation: fadeInOut 3s infinite alternate-reverse;
}

@keyframes zodiacSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes numbersSpin {
    0% { transform: rotate(0deg) scale(1.2); opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { transform: rotate(-360deg) scale(1.2); opacity: 0.2; }
}

@keyframes astrologyFloat {
    0% { transform: rotate(0deg) translateY(-10px); }
    50% { transform: rotate(180deg) translateY(10px); }
    100% { transform: rotate(360deg) translateY(-10px); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes symbolsOpacity {
    from { opacity: 0.3; }
    to { opacity: 0.8; }
} 

/* Pyramid Section Styles */
.pyramid-section {
    width: 100%;
    padding: 4rem 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

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

.pyramid {
    width: 400px;
    height: 500px;
    position: relative;
    transform-style: preserve-3d;
    animation: pyramidFloat 6s ease-in-out infinite;
}

.pyramid-face {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
}

.pyramid-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        var(--primary-purple),
        var(--primary-orange),
        var(--primary-purple)
    );
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: glowPulse 3s infinite alternate;
}

.pyramid h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.pyramid-content {
    text-align: center;
}

.pyramid-content .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 4s ease-in-out infinite;
}

.pyramid-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pyramid-content li {
    margin: 1.2rem 0;
    color: var(--text-light);
    font-size: 1.3rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
}

.pyramid-content li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.pyramid:hover .pyramid-face {
    transform: translateY(-10px);
}

.pyramid:hover .pyramid-content li {
    color: var(--primary-purple);
    text-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
}

@keyframes pyramidFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        filter: blur(15px);
    }
    100% {
        opacity: 0.6;
        filter: blur(20px);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

/* Responsive Design for Pyramids */
@media (max-width: 1200px) {
    .pyramid-container {
        gap: 1rem;
    }
    
    .pyramid {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .pyramid {
        width: 100%;
        max-width: 300px;
        margin: 1rem 0;
    }
} 

/* Add a subtle separator */
.pyramid-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(138, 43, 226, 0.3),
        transparent
    );
} 

/* Ensure content is visible over matrix */
.no-background {
    background: none;
    position: relative;
    z-index: 2;
}

/* Adjust matrix opacity for better visibility */
.matrix-background canvas {
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    animation: matrixScroll 120s linear infinite;
} 

/* Mystical Pyramids Section */
.mystical-pyramids {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    perspective: 1000px;
}

.pyramid-container {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.pyramid {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: pyramidFloat 6s ease-in-out infinite;
}

.pyramid:nth-child(2) {
    animation-delay: -2s;
}

.pyramid:nth-child(3) {
    animation-delay: -4s;
}

.pyramid-sides {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.pyramid-side {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(5px);
}

.pyramid-side.front {
    transform: translateZ(150px);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-side.back {
    transform: translateZ(-150px) rotateY(180deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-side.left {
    transform: rotateY(-90deg) translateZ(150px);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-side.right {
    transform: rotateY(90deg) translateZ(150px);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(138, 43, 226, 0.2);
    transform: rotateX(90deg) translateZ(150px);
}

.pyramid-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: var(--text-light);
    z-index: 1;
}

.pyramid-content h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.info-section {
    padding: 2rem;
    width: 90%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.info-section .symbol {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
    animation: symbolFloat 3s ease-in-out infinite;
}

.info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section li {
    margin: 1.2rem 0;
    font-size: 1.3rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-align: left;
    padding-left: 1.5rem;
    position: relative;
}

.info-section li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

@keyframes pyramidFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }
    50% {
        transform: translateY(-20px) rotateY(180deg);
    }
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
} 

/* My Story Section */
.my-story {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.my-story h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 4rem;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-purple),
        transparent
    );
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    animation: fadeInSlide 0.8s ease-out forwards;
    opacity: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
    z-index: 2;
    animation: iconPulse 3s infinite alternate;
}

.timeline-content {
    flex: 1;
    max-width: 500px;
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.sacred-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.sacred-elements span {
    padding: 0.5rem 1rem;
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.1) 0%,
        rgba(138, 43, 226, 0.2) 100%
    );
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
    animation: elementFloat 3s infinite alternate;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
    cursor: pointer;
}

.sacred-elements span::before {
    content: '✧';
    margin-right: 0.5rem;
    color: var(--primary-purple);
    opacity: 0.8;
}

.sacred-elements span::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(138, 43, 226, 0.3),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sacred-elements span:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.2) 0%,
        rgba(138, 43, 226, 0.3) 100%
    );
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

.sacred-elements span:hover::after {
    opacity: 1;
    animation: rotateSacredGlow 2s linear infinite;
}

@keyframes rotateSacredGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes elementFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 5px 25px rgba(138, 43, 226, 0.2);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
    }
}

.guidance-aspects {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

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

.aspect-icon {
    font-size: 2rem;
    animation: aspectGlow 2s infinite alternate;
}

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

@keyframes iconPulse {
    from { transform: scale(1); box-shadow: 0 0 20px rgba(138, 43, 226, 0.3); }
    to { transform: scale(1.1); box-shadow: 0 0 30px rgba(138, 43, 226, 0.5); }
}

@keyframes aspectGlow {
    from { text-shadow: 0 0 10px rgba(138, 43, 226, 0.3); }
    to { text-shadow: 0 0 20px rgba(138, 43, 226, 0.6); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .journey-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        gap: 2rem;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        max-width: calc(100% - 100px);
    }
} 

.awakening .timeline-content {
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.9),
        rgba(43, 43, 43, 0.8)
    );
}

.awakening .timeline-content::before {
    content: '☯';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: rotateYinYang 8s linear infinite;
}

.awakening .timeline-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,0 L100,50 L50,100 L0,50 Z' fill='none' stroke='rgba(138,43,226,0.1)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: -1;
    animation: patternFloat 20s linear infinite;
}

.awakening .timeline-content .awakening-symbols {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
    opacity: 0.3;
}

.awakening .timeline-content .awakening-symbols span {
    font-size: 1.2rem;
    animation: symbolPulse 3s infinite alternate;
}

.awakening .timeline-content .awakening-symbols span:nth-child(1) { animation-delay: 0s; }
.awakening .timeline-content .awakening-symbols span:nth-child(2) { animation-delay: 0.5s; }
.awakening .timeline-content .awakening-symbols span:nth-child(3) { animation-delay: 1s; }

@keyframes rotateYinYang {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes patternFloat {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
} 

.story-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
}

.discover-btn {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.1) 0%,
        rgba(138, 43, 226, 0.2) 100%
    );
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.discover-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(138, 43, 226, 0.2),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: btnGlow 3s infinite alternate;
}

.btn-text {
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.btn-symbols {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-symbols .symbol {
    font-size: 1rem;
    color: var(--primary-purple);
    animation: symbolFloat 2s infinite alternate;
}

.btn-symbols .symbol:nth-child(2) {
    animation-delay: 0.3s;
}

.btn-symbols .symbol:nth-child(3) {
    animation-delay: 0.6s;
}

.discover-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.2) 0%,
        rgba(138, 43, 226, 0.3) 100%
    );
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

.discover-btn:hover .btn-symbols {
    opacity: 1;
    bottom: 5px;
}

@keyframes btnGlow {
    from { opacity: 0.3; transform: rotate(0deg); }
    to { opacity: 0.6; transform: rotate(360deg); }
} 

/* Music Player */
.music-player {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.music-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.music-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(138, 43, 226, 0.2),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-toggle:hover::before {
    opacity: 1;
    animation: rotateMusicGlow 2s linear infinite;
}

.music-icon {
    font-size: 1.5rem;
    position: absolute;
    transition: all 0.3s ease;
}

.music-icon.playing {
    opacity: 0;
    transform: scale(0);
}

.music-icon.paused {
    opacity: 1;
    transform: scale(1);
}

.music-toggle.is-playing .music-icon.playing {
    opacity: 1;
    transform: scale(1);
}

.music-toggle.is-playing .music-icon.paused {
    opacity: 0;
    transform: scale(0);
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

@keyframes rotateMusicGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
} 

/* Portal Effect Styles */
.portal-effect {
    position: absolute;
    inset: -50%;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.portal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    inset: 0;
    animation: portalSpin 4s linear infinite;
}

.portal-ring.outer {
    border-color: rgba(138, 43, 226, 0.3);
    animation-duration: 4s;
}

.portal-ring.middle {
    border-color: rgba(138, 43, 226, 0.5);
    animation-duration: 3s;
    animation-direction: reverse;
}

.portal-ring.inner {
    border-color: rgba(138, 43, 226, 0.7);
    animation-duration: 2s;
}

.portal-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(138, 43, 226, 0.6) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.discover-btn.portal-active {
    transform: scale(1.5);
    background: transparent;
    border-color: transparent;
}

.discover-btn.portal-active .portal-effect {
    opacity: 1;
    transform: scale(3);
}

.discover-btn.portal-active .portal-particles {
    opacity: 1;
    animation: particlePulse 2s ease infinite;
}

.discover-btn.portal-active .btn-text,
.discover-btn.portal-active .btn-symbols {
    opacity: 0;
}

@keyframes portalSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particlePulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
} 

/* Admin Styles */
.admin-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.admin-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-content {
    background: rgba(20, 20, 20, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    width: 90%;
    max-width: 400px;
}

.admin-modal-content h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-login-form input {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: #fff;
}

.admin-login-form button {
    padding: 0.8rem;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-login-form button:hover {
    background: rgba(138, 43, 226, 0.3);
}

/* Admin Panel Styles */
.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.admin-panel.visible {
    transform: translateY(0);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.admin-header h2 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin: 0;
}

.admin-logout-btn {
    background: transparent;
    border: 1px solid rgba(138, 43, 226, 0.4);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-logout-btn:hover {
    background: rgba(138, 43, 226, 0.2);
}

.admin-menu {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.admin-tab {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.admin-tab.active {
    background: rgba(138, 43, 226, 0.2);
    opacity: 1;
}

.admin-tab:hover {
    opacity: 1;
}

.admin-content {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(138, 43, 226, 0.5);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Edit Instructions */
.edit-instructions {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.edit-instructions p {
    margin: 0.5rem 0;
    color: #fff;
    opacity: 0.8;
}

.edit-instructions p::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--primary-purple);
}

/* Navigation Editor */
.nav-editor {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
}

.nav-items {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nav-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

/* Settings Grid */
.settings-grid {
    display: grid;
    gap: 1.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

/* Buttons */
.save-btn, .add-btn {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.4);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.save-btn:hover, .add-btn:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

/* Editable Elements Indicator */
[data-editable="true"] {
    position: relative;
    outline: 2px dashed rgba(138, 43, 226, 0.5);
    border-radius: 4px;
    padding: 2px;
}

[data-editable="true"]::before {
    content: '✎';
    position: absolute;
    top: -20px;
    right: 0;
    background: rgba(138, 43, 226, 0.8);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-editable="true"]:hover::before {
    opacity: 1;
}

/* Smart Functions Link Style */
.smart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.1),
        rgba(255, 140, 0, 0.1)
    );
    border-radius: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease !important;
}

.smart-link i {
    font-size: 1rem;
    background: linear-gradient(
        45deg,
        var(--primary-purple),
        var(--primary-orange)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.smart-link:hover {
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.2),
        rgba(255, 140, 0, 0.2)
    );
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

.smart-link:hover i {
    transform: scale(1.2);
}

.smart-link::after {
    display: none;
}

/* Active state for Smart Link */
.smart-link.active {
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.3),
        rgba(255, 140, 0, 0.3)
    );
    border-color: rgba(138, 43, 226, 0.5);
}

.logo:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        45deg,
        rgba(138, 43, 226, 0.1),
        rgba(255, 140, 0, 0.1)
    );
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 5px 15px rgba(138, 43, 226, 0.1),
        0 0 30px rgba(138, 43, 226, 0.1) inset;
}

.logo:hover::before,
.logo:hover::after {
    opacity: 1;
}

.logo:hover::before {
    left: 1rem;
}

.logo:hover::after {
    right: 1rem;
}

.logo h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-purple),
        var(--primary-orange),
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover h1 span::after {
    transform: scaleX(1);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.language-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    transition: all 0.3s ease;
}

.language-select:hover {
    background-color: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.language-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.language-select option {
    background: rgba(20, 20, 20, 0.95);
    color: var(--text-light);
    padding: 0.5rem;
}

/* Footer stílusok */
.main-footer {
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(156, 39, 176, 0.2);
    color: white;
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-button:hover {
    background: rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
}

.footer-button i {
    font-size: 1rem;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    pointer-events: auto;
    z-index: 1;
    outline: none;
    text-decoration: none;
    animation: socialPulse 2.2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: visible;
}

.social-links a:hover {
    color: #ffd700;
    transform: translateY(-2px) scale(1.15) rotate(-2deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.social-links a:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.35);
    border-radius: 8px;
}

@keyframes socialPulse {
    0% { transform: translateY(0) scale(1); opacity: .85; }
    50% { transform: translateY(-1px) scale(1.08); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: .85; }
}

/* periodic attention grabber */
.social-links a:nth-child(1) { animation-delay: 0s; }
.social-links a:nth-child(2) { animation-delay: .2s; }
.social-links a:nth-child(3) { animation-delay: .4s; }
.social-links a:nth-child(4) { animation-delay: .6s; }

/* Platform-specific colorful gradients on the icon text */
.social-links a:nth-child(1) i { /* Facebook */
    background: linear-gradient(45deg, #1877f2, #4dabff);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.social-links a:nth-child(2) i { /* Instagram */
    background: conic-gradient(from 200deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.social-links a:nth-child(3) i { /* YouTube */
    background: linear-gradient(45deg, #ff4d4d, #ff0000);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.social-links a:nth-child(4) i { /* TikTok */
    background: linear-gradient(45deg, #25f4ee, #fe2c55);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Neon halo ring behind icons */
.social-links a::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity .25s ease, transform .25s ease;
}
.social-links a:nth-child(1)::after { background: radial-gradient(circle, rgba(24,119,242,.7), transparent 60%); }
.social-links a:nth-child(2)::after { background: conic-gradient(from 0deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75); }
.social-links a:nth-child(3)::after { background: radial-gradient(circle, rgba(255,0,0,.7), transparent 60%); }
.social-links a:nth-child(4)::after { background: conic-gradient(from 0deg, #25f4ee, #111, #fe2c55, #111, #25f4ee); }

.social-links a:hover::after, .social-links a.is-hot::after {
    opacity: .9;
    transform: scale(1.05);
    animation: haloSpin 3.5s linear infinite;
}

@keyframes haloSpin {
    from { transform: scale(1.05) rotate(0deg); }
    to { transform: scale(1.05) rotate(360deg); }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Reszponzív footer */
@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.about-btn {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(138, 43, 226, 0.1);
}

.about-btn:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

/* Egységes scrollbar stílus */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

/* Görgetés közben megjelenő görgetősáv */
body.scrolling::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: var(--hud-background);
}

body.scrolling::-webkit-scrollbar-track {
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 255, 157, 0.05) 50%
    );
    background-size: 100% 4px;
    border-left: 1px solid rgba(0, 255, 157, 0.1);
    animation: matrixScroll 2s linear infinite;
    position: relative;
}

body.scrolling::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 157, 0.2);
    border: 1px solid var(--hud-primary);
    border-radius: 4px;
    box-shadow: 
        0 0 5px rgba(0, 255, 157, 0.2),
        inset 0 0 10px rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

/* Firefox görgetősáv testreszabása */
* {
    scrollbar-width: none;
}

body.scrolling {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 157, 0.2) var(--hud-background);
}

/* Görgetés animáció megtartása */
html {
    scroll-behavior: smooth;
}

/* Görgetés közben háttér effekt */
body {
    transition: all 0.3s ease;
}

body.scrolling {
    background-color: rgba(8, 12, 16, 0.98);
}

/* Görgetősáv extra fényeffekt */
::-webkit-scrollbar-track::after {
    content: '';
    position: fixed;
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 255, 157, 0.1),
        transparent
    );
    pointer-events: none;
}

/* Bejelentések oldal stílusok */
.announcements-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(20,20,40,0.9));
    min-height: 100vh;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #9c27b0, #673ab7);
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.announcement-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #9c27b0;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.announcement-date {
    color: #9c27b0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.announcement-item h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.announcement-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
}

/* Bejelentések gomb stílusok */
.announcements-button-container .announcement-btn:hover {
    background: rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.announcements-button-container .announcement-btn i {
    transition: transform 0.3s ease;
}

.announcements-button-container .announcement-btn:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .announcements-button-container {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .announcements-button-container .announcement-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}