/* Cosmic Lion Theme - Inspired by cosmic energy and crystalline power */

:root {
    --cosmic-black: #0a0a0a;
    --space-dark: #1a1a2e;
    --cosmic-blue: #00d4ff;
    --crystal-blue: #0066ff;
    --electric-blue: #00ffff;
    --golden-energy: #ff9500;
    --solar-gold: #ffb700;
    --royal-gold: #ffd700;
    --cosmic-purple: #6a0dad;
    --energy-white: #ffffff;
    --text-light: #e0e0e0;
    --success-green: #00ff88;
    --warning-orange: #ff6600;
    --royal-red: #dc143c;
    --gradient-cosmic: linear-gradient(135deg, var(--space-dark) 0%, var(--cosmic-black) 50%, var(--cosmic-purple) 100%);
    --gradient-energy: linear-gradient(45deg, var(--golden-energy) 0%, var(--solar-gold) 50%, var(--cosmic-blue) 100%);
    --gradient-crystal: linear-gradient(135deg, var(--electric-blue) 0%, var(--crystal-blue) 50%, var(--cosmic-blue) 100%);
    --gradient-royal: linear-gradient(45deg, var(--royal-gold) 0%, var(--golden-energy) 50%, var(--royal-red) 100%);
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--cosmic-black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.cosmic-container {
    position: relative;
    min-height: 100vh;
}

/* Navigation */
.cosmic-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
}

.brand-text {
    color: var(--energy-white);
    text-shadow: 0 0 20px var(--cosmic-blue);
}

.brand-accent {
    color: var(--golden-energy);
    text-shadow: 0 0 20px var(--golden-energy);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--cosmic-blue);
    text-shadow: 0 0 10px var(--cosmic-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-energy);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-cosmic);
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, var(--cosmic-blue), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, var(--electric-blue), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starfield 20s linear infinite;
}

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

.energy-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(255, 149, 0, 0.1) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        transparent 70%);
    border-radius: 50%;
    animation: energyPulse 4s ease-in-out infinite alternate;
}

@keyframes energyPulse {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

/* Lion Characters */
.lion-characters {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    z-index: 5;
    padding: 0 50px;
}

.lion-character {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.lion-character:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--royal-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.lion-character .lion-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    animation: characterFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--royal-gold));
}

/* Realistic Lion Portraits */
.lion-portrait {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F  50%, #DEB887 100%);
    border: 3px solid var(--royal-gold);
    overflow: hidden;
}

.lion-mane, .lioness-mane, .wolf-lion-mane, .warrior-mane {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #8B4513 20%, #CD853F 60%, #DEB887 80%);
}

.lioness-mane {
    background: radial-gradient(circle, #A0522D 20%, #D2691E 60%, #F4A460 80%);
    top: -10px;
    left: -10px;
    right: -10px;
}

.wolf-lion-mane {
    background: radial-gradient(circle, #2F4F4F 20%, #696969 60%, #A9A9A9 80%);
}

.warrior-mane {
    background: radial-gradient(circle, #800000 20%, #8B0000 60%, #DC143C 80%);
}

.lion-face {
    position: absolute;
    top: 25px;
    left: 20px;
    right: 20px;
    bottom: 25px;
    background: linear-gradient(135deg, #DEB887 0%, #F5DEB3 100%);
    border-radius: 50%;
}

.lion-eyes {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #FF4500;
    text-shadow: 0 0 5px #FF4500;
    letter-spacing: 8px;
}

.lion-nose {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #8B4513;
}

.crown-symbol, .business-symbol, .warrior-symbol {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: var(--royal-gold);
    text-shadow: 0 0 10px var(--royal-gold);
    animation: symbolGlow 2s ease-in-out infinite alternate;
}

.business-symbol {
    color: #C0C0C0;
    text-shadow: 0 0 10px #C0C0C0;
}

.warrior-symbol {
    color: #DC143C;
    text-shadow: 0 0 10px #DC143C;
}

@keyframes symbolGlow {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.1); }
}

.character-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.character-subtitle {
    font-size: 0.7rem;
    color: var(--cosmic-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Token Logo */
.token-logo {
    margin-bottom: 30px;
    position: relative;
}

.main-lion-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: lionPulse 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px var(--golden-energy));
}

/* Main Lion Portrait */
.main-lion-portrait {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 30%, #DEB887 70%, #F5DEB3 100%);
    border: 4px solid var(--royal-gold);
    overflow: hidden;
}

.main-lion-mane {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, #8B4513 10%, #CD853F 40%, #DEB887 70%, #F5DEB3 90%);
    box-shadow: inset 0 0 20px rgba(139, 69, 19, 0.5);
}

.main-lion-face {
    position: absolute;
    top: 35px;
    left: 30px;
    right: 30px;
    bottom: 35px;
    background: linear-gradient(135deg, #DEB887 0%, #F5DEB3 50%, #FFFACD 100%);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(139, 69, 19, 0.2);
}

.main-lion-eyes {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #FF4500;
    text-shadow: 0 0 8px #FF4500;
    letter-spacing: 12px;
}

.main-lion-nose {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #8B4513;
}

.main-lion-mouth {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #8B4513;
}

.crown-effect {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--royal-gold);
    text-shadow: 0 0 20px var(--royal-gold);
    animation: crownFloat 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px var(--royal-gold));
}

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

@keyframes lionPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cosmic-blue);
    text-shadow: 0 0 10px var(--cosmic-blue);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-energy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 149, 0, 0.5);
    margin-bottom: 10px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-blue);
    text-shadow: 0 0 15px var(--electric-blue);
    letter-spacing: 5px;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 149, 0, 0.5)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 149, 0, 0.8)); }
}

/* Contract Address */
.contract-address {
    margin: 30px 0;
    padding: 20px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.address-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cosmic-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.address-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--energy-white);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    word-break: break-all;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background: var(--gradient-energy);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--royal-gold);
    text-shadow: 0 0 10px var(--royal-gold);
    transition: transform 0.2s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cosmic-btn {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-energy);
    color: var(--cosmic-black);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--cosmic-blue);
    border: 2px solid var(--cosmic-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--cosmic-blue);
    color: var(--cosmic-black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Cosmic Crystals */
.cosmic-crystals {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 5;
}

.crystal {
    width: 60px;
    height: 80px;
    background: var(--gradient-crystal);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: relative;
    animation: crystalFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.5));
}

.crystal-1 { animation-delay: 0s; }
.crystal-2 { animation-delay: 0.6s; }
.crystal-3 { animation-delay: 1.2s; }
.crystal-4 { animation-delay: 1.8s; }
.crystal-5 { animation-delay: 2.4s; }

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

/* Pride Section */
.pride-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--cosmic-black) 0%, var(--space-dark) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--energy-white);
    text-shadow: 0 0 30px var(--royal-gold);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

.energy-line {
    width: 200px;
    height: 4px;
    background: var(--gradient-royal);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px var(--royal-gold);
}

.pride-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pride-member {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pride-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-royal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pride-member:hover::before {
    transform: scaleX(1);
}

.pride-member:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--royal-gold);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 25px var(--royal-gold));
    animation: memberFloat 4s ease-in-out infinite;
}

/* Detailed Character Portraits */
.detailed-portrait {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 3px solid var(--royal-gold);
    overflow: hidden;
}

.portrait-frame {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
}

.character-silhouette {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.head-shape {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 35px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 50%, #DEB887 100%);
    border-radius: 50% 50% 40% 40%;
    border: 2px solid var(--royal-gold);
}

.mane-detail {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 45px;
    border-radius: 50%;
}

.golden-mane {
    background: radial-gradient(circle, #8B4513 20%, #CD853F 50%, #DEB887 80%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.silver-mane {
    background: radial-gradient(circle, #A0522D 20%, #D2691E 50%, #F4A460 80%);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.business-mane {
    background: radial-gradient(circle, #2F4F4F 20%, #696969 50%, #A9A9A9 80%);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.warrior-mane {
    background: radial-gradient(circle, #800000 20%, #8B0000 50%, #DC143C 80%);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.mystic-mane {
    background: radial-gradient(circle, #4B0082 20%, #8A2BE2 50%, #9370DB 80%);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.hunter-mane {
    background: radial-gradient(circle, #556B2F 20%, #808000 50%, #9ACD32 80%);
    box-shadow: 0 0 10px rgba(154, 205, 50, 0.5);
}

.suit-collar, .elegant-attire, .corporate-suit, .tactical-attire, .robes-attire, .tracker-gear {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 25px;
    border-radius: 5px 5px 0 0;
}

.suit-collar {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border: 1px solid var(--royal-gold);
}

.elegant-attire {
    background: linear-gradient(135deg, #8B008B 0%, #9932CC 100%);
    border: 1px solid #C0C0C0;
}

.corporate-suit {
    background: linear-gradient(135deg, #191970 0%, #000080 100%);
    border: 1px solid #C0C0C0;
}

.tactical-attire {
    background: linear-gradient(135deg, #2F4F4F 0%, #008000 100%);
    border: 1px solid #DC143C;
}

.robes-attire {
    background: linear-gradient(135deg, #4B0082 0%, #8A2BE2 100%);
    border: 1px solid #9370DB;
}

.tracker-gear {
    background: linear-gradient(135deg, #556B2F 0%, #228B22 100%);
    border: 1px solid #9ACD32;
}

.royal-insignia, .business-insignia, .warrior-insignia, .mystic-insignia, .hunter-insignia {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    text-shadow: 0 0 8px currentColor;
    animation: insigniaGlow 3s ease-in-out infinite alternate;
}

.royal-insignia {
    color: var(--royal-gold);
}

.business-insignia {
    color: #C0C0C0;
}

.warrior-insignia {
    color: #DC143C;
}

.mystic-insignia {
    color: #9370DB;
}

.hunter-insignia {
    color: #9ACD32;
}

@keyframes insigniaGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

@keyframes memberFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.pride-member h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.member-role {
    font-size: 1rem;
    color: var(--cosmic-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.pride-member p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.member-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-stats .stat {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9rem;
    color: var(--royal-gold);
    font-family: 'Orbitron', monospace;
}

/* Energy Section */
.energy-section {
    padding: 100px 40px;
    background: var(--gradient-cosmic);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.energy-visualization {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        var(--golden-energy) 0%, 
        var(--cosmic-blue) 50%, 
        transparent 100%);
    border-radius: 50%;
    animation: orbPulse 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes orbPulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 50px rgba(255, 149, 0, 0.8);
    }
    100% { 
        transform: scale(1.2);
        box-shadow: 0 0 80px rgba(0, 212, 255, 0.8);
    }
}

.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 212, 255, 0.4);
    animation: ringRotate 10s linear infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 149, 0, 0.3);
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border-color: rgba(0, 255, 255, 0.2);
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Lion Spirits */
.lion-spirits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
}

.spirit-lion {
    position: absolute;
    font-size: 2rem;
    animation: spiritFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--royal-gold));
}

.spirit-lion:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spirit-lion:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 2.5s;
}

.spirit-lion:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 5s;
}

@keyframes spiritFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-40px) rotate(180deg);
        opacity: 1;
    }
}

.energy-content {
    flex: 1;
    padding-left: 60px;
}

.energy-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--energy-white);
    text-shadow: 0 0 20px var(--cosmic-blue);
    margin-bottom: 30px;
}

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

.energy-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--golden-energy);
    text-shadow: 0 0 15px var(--golden-energy);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cosmic-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Tokenomics Breakdown */
.tokenomics-breakdown {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.tokenomics-breakdown h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cosmic-blue);
    margin-bottom: 20px;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: var(--text-light);
}

.breakdown-value {
    color: var(--golden-energy);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--space-dark) 0%, var(--cosmic-black) 100%);
}

.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-energy);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.roadmap-item:hover::before {
    transform: scaleY(1);
}

.roadmap-item.completed {
    border-color: var(--success-green);
}

.roadmap-item.completed::before {
    background: var(--success-green);
    transform: scaleY(1);
}

.roadmap-item.active {
    border-color: var(--golden-energy);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
}

.roadmap-item.active::before {
    background: var(--gradient-energy);
    transform: scaleY(1);
}

.roadmap-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

.roadmap-content {
    flex: 1;
}

.roadmap-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--cosmic-blue);
    margin-bottom: 10px;
}

.roadmap-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.phase-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.roadmap-item.completed .phase-status {
    background: var(--success-green);
    color: var(--cosmic-black);
}

.roadmap-item.active .phase-status {
    background: var(--golden-energy);
    color: var(--cosmic-black);
}

.roadmap-item:not(.completed):not(.active) .phase-status {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cosmic-blue);
    border: 1px solid var(--cosmic-blue);
}

/* Links Section */
.links-section {
    padding: 100px 40px;
    background: var(--gradient-cosmic);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-energy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-card:hover {
    transform: translateY(-10px);
    border-color: var(--cosmic-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    color: var(--energy-white);
}

.link-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px var(--cosmic-blue));
}

.link-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--cosmic-blue);
    margin-bottom: 10px;
}

.link-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
.cosmic-footer {
    background: var(--cosmic-black);
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand .brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-brand p {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-lions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-lion {
    font-size: 1.5rem;
    animation: footerLionDance 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--royal-gold));
    cursor: pointer;
}

.footer-lion:nth-child(1) { animation-delay: 0s; }
.footer-lion:nth-child(2) { animation-delay: 1s; }
.footer-lion:nth-child(3) { animation-delay: 2s; }
.footer-lion:nth-child(4) { animation-delay: 3s; }

@keyframes footerLionDance {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.05) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(3deg); }
}

.footer-contract {
    text-align: right;
}

.footer-contract p {
    color: var(--cosmic-blue);
    margin-bottom: 5px;
}

.footer-address {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--energy-white);
    background: rgba(26, 26, 46, 0.8);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--cosmic-blue);
    text-shadow: 0 0 10px var(--cosmic-blue);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-disclaimer p {
    color: var(--text-light);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cosmic-nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .lion-characters {
        flex-direction: column;
        position: static;
        margin-bottom: 30px;
        gap: 20px;
        padding: 0 20px;
    }
    
    .lion-character {
        margin: 0 auto;
        max-width: 200px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cosmic-crystals {
        bottom: 50px;
        gap: 15px;
    }
    
    .crystal {
        width: 40px;
        height: 60px;
    }
    
    .pride-grid {
        grid-template-columns: 1fr;
    }
    
    .energy-section {
        flex-direction: column;
        text-align: center;
    }
    
    .energy-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .energy-stats {
        justify-content: center;
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .roadmap-icon {
        min-width: auto;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contract {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .address-container {
        flex-direction: column;
    }
    
    .address-text {
        min-width: auto;
        word-break: break-all;
    }

    /* Presale Mobile Styles */
    .presale-alert {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin: 15px 0;
        padding: 15px;
    }

    .presale-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .presale-card {
        padding: 25px;
    }

    .stat-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .countdown {
        gap: 10px;
        justify-content: center;
    }

    .time-unit {
        min-width: 60px;
        padding: 10px 5px;
    }

    .time-number {
        font-size: 1.5rem;
    }

    .btn-presale {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .presale-input-group {
        flex-direction: column;
        gap: 15px;
    }

    .presale-input {
        width: 100%;
    }

    .btn-max {
        width: 100%;
        padding: 12px;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .instruction-step {
        padding: 25px 20px;
    }

    .presale-warning {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .main-lion-avatar {
        font-size: 4rem;
    }
    
    .lion-character .lion-avatar {
        font-size: 2rem;
    }
    
    .member-avatar {
        font-size: 3rem;
    }
}

/* Presale Alert */
.presale-alert {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: alertPulse 2s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.alert-icon {
    font-size: 2rem;
    animation: alertIconSpin 3s linear infinite;
}

.alert-content {
    flex: 1;
    color: white;
    font-weight: 600;
}

.alert-content strong {
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes alertPulse {
    0% { box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6); }
}

@keyframes alertIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Presale Section */
.presale-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--space-dark) 0%, var(--cosmic-black) 50%, #0a0a2e 100%);
    position: relative;
}

.presale-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.presale-card {
    background: rgba(26, 26, 46, 0.95);
    border: 2px solid var(--royal-gold);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.presale-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-royal);
    animation: presaleGlow 3s ease-in-out infinite alternate;
}

@keyframes presaleGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.presale-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.presale-icon {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 15px;
    animation: presaleIconFloat 4s ease-in-out infinite;
}

@keyframes presaleIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.presale-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--energy-white);
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--royal-gold);
}

.presale-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.presale-status.live {
    background: linear-gradient(135deg, #00ff00 0%, #32cd32 100%);
    color: var(--cosmic-black);
    animation: statusBlink 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

@keyframes statusBlink {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.presale-stats {
    margin-bottom: 30px;
}

.stat-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--royal-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cosmic-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-gold);
    text-shadow: 0 0 10px var(--royal-gold);
}

.presale-progress {
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--energy-white);
}

.progress-percentage {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--royal-gold);
    text-shadow: 0 0 10px var(--royal-gold);
}

.progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-gold) 0%, #FFA500 100%);
    border-radius: 25px;
    animation: progressFill 2s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 67%; }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.presale-timer {
    margin-bottom: 30px;
    text-align: center;
}

.presale-timer h4 {
    color: var(--energy-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--royal-gold);
    border-radius: 15px;
    padding: 15px 10px;
    min-width: 80px;
    text-align: center;
    animation: timerPulse 1s ease-in-out infinite alternate;
}

.time-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--royal-gold);
    text-shadow: 0 0 15px var(--royal-gold);
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: var(--cosmic-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@keyframes timerPulse {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.presale-actions {
    text-align: center;
}

.btn-presale {
    background: var(--gradient-royal);
    color: var(--cosmic-black);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 35px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-presale:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

.btn-icon {
    font-size: 1.5rem;
    animation: btnIconBounce 2s ease-in-out infinite;
}

@keyframes btnIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.presale-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.presale-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: var(--energy-white);
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.presale-input:focus {
    outline: none;
    border-color: var(--royal-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.presale-input::placeholder {
    color: var(--text-light);
}

.btn-max {
    background: var(--gradient-energy);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--cosmic-black);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-max:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.5);
}

.conversion-display {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 12px;
    color: var(--cosmic-blue);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-align: center;
}

.presale-benefits {
    display: grid;
    gap: 25px;
}

.benefit-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--royal-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: benefitIconFloat 3s ease-in-out infinite;
}

.benefit-card:nth-child(1) .benefit-icon { animation-delay: 0s; }
.benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.5s; }
.benefit-card:nth-child(3) .benefit-icon { animation-delay: 1s; }
.benefit-card:nth-child(4) .benefit-icon { animation-delay: 1.5s; }

@keyframes benefitIconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.benefit-card h4 {
    color: var(--royal-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.presale-instructions {
    margin-top: 60px;
    text-align: center;
}

.presale-instructions h3 {
    color: var(--energy-white);
    font-size: 2rem;
    margin-bottom: 40px;
    text-shadow: 0 0 20px var(--royal-gold);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.instruction-step {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.instruction-step:hover {
    transform: translateY(-10px);
    border-color: var(--royal-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-royal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--cosmic-black);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.step-content h4 {
    color: var(--royal-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.presale-warning {
    margin-top: 40px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.warning-icon {
    font-size: 2rem;
    color: #FFC107;
    animation: warningPulse 2s ease-in-out infinite alternate;
}

@keyframes warningPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.warning-content {
    flex: 1;
    color: var(--energy-white);
    line-height: 1.6;
}

.warning-content strong {
    color: #FFC107;
} 