/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0f1a 50%, #0f1a0f 100%);
    color: #e0e0e0;
    overflow-x: hidden;
    position: relative;
}

/* Mystical Background */
.mystical-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.floating-runes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ff6b35, transparent),
        radial-gradient(2px 2px at 40px 70px, #8b5cf6, transparent),
        radial-gradient(1px 1px at 90px 40px, #06d6a0, transparent),
        radial-gradient(1px 1px at 130px 80px, #f72585, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffd166, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float-runes 20s linear infinite;
    opacity: 0.3;
}

@keyframes float-runes {
    from { transform: translateY(0px); }
    to { transform: translateY(-100px); }
}

.fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        transparent 25%, 
        rgba(6, 214, 160, 0.05) 50%, 
        transparent 75%, 
        rgba(247, 37, 133, 0.05) 100%);
    animation: fog-drift 15s ease-in-out infinite;
}

@keyframes fog-drift {
    0%, 100% { opacity: 0.3; transform: translateX(0px); }
    50% { opacity: 0.1; transform: translateX(20px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.8); }
}

.logo-text {
    font-family: 'Creepster', cursive;
    font-size: 24px;
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #06d6a0);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #e0e0e0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #8b5cf6;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8b5cf6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 50px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.mystical-text {
    font-family: 'Creepster', cursive;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    50% { text-shadow: 0 0 40px rgba(139, 92, 246, 0.8); }
}

.subtitle {
    font-size: 1.5rem;
    color: #06d6a0;
    font-weight: 300;
    display: block;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #f72585);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-fox {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(139, 92, 246, 0.6);
    position: relative;
    z-index: 2;
}

.magic-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.magic-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.rune-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: 
        radial-gradient(circle, #8b5cf6 2px, transparent 2px),
        radial-gradient(circle, #06d6a0 1px, transparent 1px),
        radial-gradient(circle, #f72585 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    background-position: 0 0, 15px 15px, 25px 25px;
    animation: particle-drift 25s linear infinite;
    opacity: 0.6;
}

@keyframes particle-drift {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #8b5cf6);
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #8b5cf6;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #06d6a0);
    border-radius: 2px;
}

/* About Section */
.about {
    background: rgba(139, 92, 246, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mystical-card {
    background: rgba(15, 15, 26, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
}

.mystical-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #06d6a0;
    margin-bottom: 20px;
}

.mystical-card p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: rgba(15, 15, 26, 0.8);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #06d6a0;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-weight: 500;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(15, 15, 26, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8b5cf6;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: rgba(6, 214, 160, 0.05);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

#tokenomicsChart {
    max-width: 400px;
    max-height: 400px;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.token-info {
    background: rgba(15, 15, 26, 0.8);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.token-info h3 {
    font-family: 'Orbitron', monospace;
    color: #06d6a0;
    margin-bottom: 20px;
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.token-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-stat .label {
    color: #b0b0b0;
}

.token-stat .value {
    color: #06d6a0;
    font-weight: 600;
    word-break: break-all;
}

.distribution-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Enhanced Mystical Portal Entrance */
.portal-entrance {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    height: 200px;
}

.portal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: rotate-portal 20s linear infinite;
}

.portal-ring.outer {
    width: 180px;
    height: 180px;
    border-color: rgba(139, 92, 246, 0.4);
    animation-duration: 25s;
}

.portal-ring.middle {
    width: 120px;
    height: 120px;
    border-color: rgba(6, 214, 160, 0.6);
    animation-duration: 20s;
    animation-direction: reverse;
}

.portal-ring.inner {
    width: 60px;
    height: 60px;
    border-color: rgba(247, 37, 133, 0.8);
    animation-duration: 15s;
}

@keyframes rotate-portal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.portal-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.8) 0%, 
        rgba(6, 214, 160, 0.6) 50%, 
        transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: portal-pulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.6),
        inset 0 0 20px rgba(6, 214, 160, 0.3);
}

@keyframes portal-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), inset 0 0 20px rgba(6, 214, 160, 0.3);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.8), inset 0 0 30px rgba(6, 214, 160, 0.5);
    }
}

/* Roadmap Section - New Card Style */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Mystical Constellation */
.mystical-constellation {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.mystical-constellation .star {
    width: 8px;
    height: 8px;
    background: rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.mystical-constellation .star::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mystical-constellation .star.active {
    background: #8b5cf6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    animation: star-twinkle 2s ease-in-out infinite;
}

.mystical-constellation .star.active::before {
    opacity: 1;
}

.mystical-constellation.legendary .star {
    background: linear-gradient(45deg, #8b5cf6, #ffd700);
    animation: legendary-star 3s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes legendary-star {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
        transform: scale(1.2);
    }
}

/* Enhanced Phase Icons */
.phase-icon {
    position: relative;
    overflow: visible;
}

.icon-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.2) 0%, 
        rgba(6, 214, 160, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.icon-aura.active {
    opacity: 1;
    animation: icon-aura-pulse 3s ease-in-out infinite;
}

.icon-aura.legendary {
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(139, 92, 246, 0.2) 50%, 
        transparent 100%);
    animation: legendary-aura 4s ease-in-out infinite;
}

@keyframes icon-aura-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes legendary-aura {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

.roadmap-card:hover .icon-aura {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Legendary Card Styling */
.roadmap-card.legendary {
    border: 2px solid rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(15, 15, 26, 0.95) 0%, 
        rgba(255, 215, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-card.legendary::before {
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 50%, 
        rgba(139, 92, 246, 0.1) 100%);
}

.roadmap-card.legendary .phase-number {
    background: linear-gradient(135deg, #ffd700, #8b5cf6);
    animation: legendary-number 3s ease-in-out infinite;
}

@keyframes legendary-number {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

.phase-icon.legendary {
    background: linear-gradient(135deg, #ffd700, #8b5cf6);
    animation: legendary-icon 4s ease-in-out infinite;
}

@keyframes legendary-icon {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
    }
}

/* Status Badge Enhancements */
.status-badge.legendary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(139, 92, 246, 0.3));
    color: #ffd700;
    border: 1px solid #ffd700;
    animation: legendary-badge 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes legendary-badge {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }
}

/* Ritual Symbols Enhancement */
.ritual-symbols.legendary {
    justify-content: space-around;
    margin-top: 20px;
}

.ritual-symbols.legendary .symbol {
    color: #ffd700;
    font-size: 1.3rem;
    animation: legendary-symbol 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes legendary-symbol {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-12px) rotate(180deg);
        opacity: 1;
    }
}

/* Ancient Rune Circle */
.ancient-runes {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
}

.rune-circle.outer-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 3px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: rotate-runes 40s linear infinite;
}

.rune-circle.middle-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(6, 214, 160, 0.4);
    border-radius: 50%;
    animation: rotate-runes 30s linear infinite reverse;
}

.mystical-core {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(6, 214, 160, 0.2) 50%, 
        transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: core-pulse 4s ease-in-out infinite;
    border: 2px solid rgba(247, 37, 133, 0.5);
}

.core-symbol {
    font-size: 3rem;
    animation: fox-rotate 8s ease-in-out infinite;
}

.core-energy {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        rgba(139, 92, 246, 0.3),
        rgba(6, 214, 160, 0.3),
        rgba(247, 37, 133, 0.3),
        rgba(139, 92, 246, 0.3)
    );
    animation: energy-spin 6s linear infinite;
    opacity: 0.6;
}

@keyframes core-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
    }
}

@keyframes fox-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

@keyframes energy-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Spell Orbs */
.floating-spells {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.spell-orb {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.8) 0%, 
        rgba(6, 214, 160, 0.6) 50%, 
        transparent 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: orb-float 8s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

@keyframes orb-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translateY(-15px) scale(0.8);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-40px) scale(1.1);
        opacity: 1;
    }
}

/* Rune Positioning and Styling */
.rune {
    position: absolute;
    font-size: 1.8rem;
    color: #8b5cf6;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    animation: rune-glow 4s ease-in-out infinite;
    font-weight: 600;
}

/* Outer Ring Runes */
.rune-circle.outer-ring .rune:nth-child(1) { top: 5px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.rune-circle.outer-ring .rune:nth-child(2) { top: 15%; right: 15%; animation-delay: 0.5s; }
.rune-circle.outer-ring .rune:nth-child(3) { top: 40%; right: 5px; animation-delay: 1s; }
.rune-circle.outer-ring .rune:nth-child(4) { bottom: 40%; right: 5px; animation-delay: 1.5s; }
.rune-circle.outer-ring .rune:nth-child(5) { bottom: 15%; right: 15%; animation-delay: 2s; }
.rune-circle.outer-ring .rune:nth-child(6) { bottom: 5px; left: 50%; transform: translateX(-50%); animation-delay: 2.5s; }
.rune-circle.outer-ring .rune:nth-child(7) { bottom: 15%; left: 15%; animation-delay: 3s; }
.rune-circle.outer-ring .rune:nth-child(8) { top: 15%; left: 15%; animation-delay: 3.5s; }

/* Middle Ring Runes */
.rune-circle.middle-ring .rune:nth-child(1) { top: 8px; left: 50%; transform: translateX(-50%); animation-delay: 0.25s; }
.rune-circle.middle-ring .rune:nth-child(2) { top: 25%; right: 8px; animation-delay: 0.75s; }
.rune-circle.middle-ring .rune:nth-child(3) { bottom: 25%; right: 8px; animation-delay: 1.25s; }
.rune-circle.middle-ring .rune:nth-child(4) { bottom: 8px; left: 50%; transform: translateX(-50%); animation-delay: 1.75s; }
.rune-circle.middle-ring .rune:nth-child(5) { bottom: 25%; left: 8px; animation-delay: 2.25s; }
.rune-circle.middle-ring .rune:nth-child(6) { top: 25%; left: 8px; animation-delay: 2.75s; }

@keyframes rune-glow {
    0%, 100% { 
        color: #8b5cf6; 
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
        transform: scale(1);
    }
    50% { 
        color: #06d6a0; 
        text-shadow: 0 0 25px rgba(6, 214, 160, 0.9);
        transform: scale(1.1);
    }
}

@keyframes rotate-runes {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Responsive Updates for New Roadmap */
@media (max-width: 768px) {
    .roadmap-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .roadmap-card {
        min-height: 320px;
        padding: 30px 20px;
    }
    
    .portal-entrance {
        height: 150px;
        margin-bottom: 40px;
    }
    
    .portal-ring.outer { width: 140px; height: 140px; }
    .portal-ring.middle { width: 100px; height: 100px; }
    .portal-ring.inner { width: 60px; height: 60px; }
    .portal-core { width: 60px; height: 60px; font-size: 1.5rem; }
    
    .ancient-runes {
        margin-top: 60px;
        height: 220px;
    }
    
    .rune-circle.outer-ring { 
        width: 200px; 
        height: 200px; 
        border-width: 2px;
    }
    
    .rune-circle.middle-ring { 
        width: 140px; 
        height: 140px;
        border-width: 1px;
    }
    
    .mystical-core { 
        width: 80px; 
        height: 80px; 
        border-width: 1px;
    }
    
    .core-symbol { font-size: 2rem; }
    
    .rune {
        font-size: 1.2rem;
    }
    
    .floating-spells .spell-orb {
        width: 8px;
        height: 8px;
    }
    
    .mystical-constellation {
        top: 10px;
        left: 10px;
        gap: 6px;
    }
    
    .mystical-constellation .star {
        width: 6px;
        height: 6px;
    }
    
    .phase-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .phase-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto 15px;
    }
    
    .icon-aura {
        width: 100px;
        height: 100px;
    }
}

/* Footer */
.footer {
    background: rgba(15, 15, 26, 0.95);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.footer-logo-text {
    font-family: 'Creepster', cursive;
    font-size: 28px;
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #06d6a0;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.footer-section a i {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .magic-circle {
        width: 280px;
        height: 280px;
    }
    
    .magic-circle::before {
        width: 220px;
        height: 220px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .timeline-item {
        display: block;
    }
    
    .timeline-item .timeline-content {
        width: 100%;
        margin: 0 0 20px 0;
        text-align: left;
    }
    
    .timeline-icon {
        position: relative;
        left: 20px;
        transform: none;
        margin-bottom: 20px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Partners Section */
.partners {
    background: rgba(247, 37, 133, 0.05);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(15, 15, 26, 0.8);
    border: 1px solid rgba(247, 37, 133, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: #f72585;
    box-shadow: 0 20px 60px rgba(247, 37, 133, 0.3);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f72585, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    overflow: hidden;
    position: relative;
}

.partner-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    z-index: 2;
    position: relative;
}

.partner-card h3 {
    font-family: 'Orbitron', monospace;
    color: #f72585;
    margin-bottom: 15px;
}

.partner-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.member-rune-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rune-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(15, 15, 26, 0.9) 0%, 
        rgba(139, 92, 246, 0.1) 70%, 
        transparent 100%);
    backdrop-filter: blur(10px);
    animation: rune-circle-pulse 4s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

@keyframes rune-circle-pulse {
    0%, 100% { 
        transform: scale(1);
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), inset 0 0 30px rgba(139, 92, 246, 0.1);
    }
    50% { 
        transform: scale(1.02);
        border-color: rgba(6, 214, 160, 0.8);
        box-shadow: 0 0 50px rgba(6, 214, 160, 0.6), inset 0 0 40px rgba(6, 214, 160, 0.2);
    }
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    transition: all 0.4s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.8);
}

.rune-symbols {
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-rune-symbols 20s linear infinite;
}

.rune-symbol {
    position: absolute;
    font-size: 1.5rem;
    color: #8b5cf6;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    font-weight: 600;
    animation: rune-symbol-glow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.rune-symbol:nth-child(1) { 
    top: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    animation-delay: 0s; 
}
.rune-symbol:nth-child(2) { 
    top: 25%; 
    right: 15px; 
    animation-delay: 0.5s; 
}
.rune-symbol:nth-child(3) { 
    top: 50%; 
    right: 5px; 
    transform: translateY(-50%); 
    animation-delay: 1s; 
}
.rune-symbol:nth-child(4) { 
    bottom: 25%; 
    right: 15px; 
    animation-delay: 1.5s; 
}
.rune-symbol:nth-child(5) { 
    bottom: 10px; 
    left: 50%; 
    transform: translateX(-50%); 
    animation-delay: 2s; 
}
.rune-symbol:nth-child(6) { 
    top: 25%; 
    left: 15px; 
    animation-delay: 2.5s; 
}

@keyframes rotate-rune-symbols {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rune-symbol-glow {
    0%, 100% { 
        color: #8b5cf6; 
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
        transform: scale(1);
    }
    50% { 
        color: #06d6a0; 
        text-shadow: 0 0 25px rgba(6, 214, 160, 1);
        transform: scale(1.2);
    }
}

.mystical-aura {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        rgba(139, 92, 246, 0.2),
        rgba(6, 214, 160, 0.2),
        rgba(247, 37, 133, 0.2),
        rgba(139, 92, 246, 0.2)
    );
    border-radius: 50%;
    animation: aura-spin 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-member:hover .mystical-aura {
    opacity: 0.6;
}

@keyframes aura-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.team-member h3 {
    font-family: 'Orbitron', monospace;
    color: #8b5cf6;
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.member-role {
    color: #06d6a0;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Council Nexus - Central Connection */
.council-nexus {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 150px;
}

.nexus-center {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(6, 214, 160, 0.2) 50%, 
        transparent 100%);
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: nexus-pulse 3s ease-in-out infinite;
    z-index: 2;
}

.central-rune {
    font-size: 2.5rem;
    animation: central-rune-float 4s ease-in-out infinite;
}

.energy-waves {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(6, 214, 160, 0.4);
    border-radius: 50%;
    animation: energy-wave-expand 2s ease-out infinite;
}

@keyframes nexus-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
    }
}

@keyframes central-rune-float {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

@keyframes energy-wave-expand {
    0% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    100% { 
        transform: scale(1.5); 
        opacity: 0; 
    }
}

.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.energy-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.6), 
        transparent);
    animation: energy-flow 4s ease-in-out infinite;
    border-radius: 1px;
}

.energy-line.line-1 {
    width: 200px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(-30deg);
    animation-delay: 0s;
}

.energy-line.line-2 {
    width: 200px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%) rotate(30deg);
    animation-delay: 1.3s;
}

.energy-line.line-3 {
    width: 150px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 2.6s;
}

@keyframes energy-flow {
    0%, 100% { opacity: 0.3; }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.5); 
    }
}

/* Responsive Design for Team */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .member-rune-circle {
        width: 160px;
        height: 160px;
    }
    
    .rune-symbols {
        width: 140px;
        height: 140px;
    }
    
    .mystical-aura {
        width: 180px;
        height: 180px;
    }
    
    .member-avatar {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .rune-symbol {
        font-size: 1.2rem;
    }
    
    .council-nexus {
        margin-top: 60px;
        height: 120px;
    }
    
    .nexus-center {
        width: 80px;
        height: 80px;
    }
    
    .central-rune {
        font-size: 2rem;
    }
    
    .energy-line {
        width: 120px;
    }
}

/* Spell Particles */
.spell-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spell-particles::before,
.spell-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.spell-particles::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.spell-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.spell-particles.active {
    opacity: 1;
}

.spell-particles.legendary {
    opacity: 1;
}

.spell-particles.legendary::before,
.spell-particles.legendary::after {
    background: linear-gradient(45deg, #ffd700, #8b5cf6);
    animation: legendary-particle 5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes legendary-particle {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-25px) scale(1.5) rotate(180deg);
        opacity: 1;
    }
}

.roadmap-card:hover .spell-particles {
    opacity: 1;
}

/* Enhanced Card Base Styles */
.roadmap-card {
    background: rgba(15, 15, 26, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.05) 0%, 
        transparent 50%, 
        rgba(6, 214, 160, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.5), 
        rgba(6, 214, 160, 0.5), 
        rgba(247, 37, 133, 0.5));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.roadmap-card:hover .card-glow {
    opacity: 0.6;
}

.card-glow.active {
    opacity: 0.8;
    animation: pulse-glow 3s ease-in-out infinite;
}

.card-glow.legendary {
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.6), 
        rgba(139, 92, 246, 0.5), 
        rgba(6, 214, 160, 0.5),
        rgba(255, 215, 0, 0.6));
    animation: legendary-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes legendary-glow {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1) rotate(0deg);
        filter: blur(8px);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) rotate(180deg);
        filter: blur(12px);
    }
}

.phase-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    z-index: 10;
}

.phase-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.roadmap-card:hover .phase-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.roadmap-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.roadmap-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.phase-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.completed {
    background: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
    border: 1px solid #06d6a0;
}

.status-badge.current {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid #8b5cf6;
    animation: pulse-badge 2s ease-in-out infinite;
}

.status-badge.upcoming {
    background: rgba(176, 176, 176, 0.2);
    color: #b0b0b0;
    border: 1px solid #b0b0b0;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); }
}

.phase-date {
    color: #06d6a0;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Orbitron', monospace;
}

.ritual-symbols {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.ritual-symbols .symbol {
    font-size: 1.5rem;
    color: #8b5cf6;
    opacity: 0.6;
    animation: symbol-float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.ritual-symbols .symbol:nth-child(1) { animation-delay: 0s; }
.ritual-symbols .symbol:nth-child(2) { animation-delay: 1.3s; }
.ritual-symbols .symbol:nth-child(3) { animation-delay: 2.6s; }

@keyframes symbol-float {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-10px); opacity: 1; }
}

.roadmap-card:hover .ritual-symbols .symbol {
    color: #06d6a0;
    opacity: 1;
    text-shadow: 0 0 10px rgba(6, 214, 160, 0.5);
} 