/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #ff6600;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px #ff6600);
}

.nav-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6600, #ff9933);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6600;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.tiger-eyes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 102, 0, 0.3) 0%, transparent 30%),
                radial-gradient(circle at 70% 40%, rgba(255, 102, 0, 0.3) 0%, transparent 30%);
    animation: eyeGlow 4s ease-in-out infinite alternate;
}

@keyframes eyeGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 102, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Tiger Heads */
.floating-tigers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.tiger-head {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px #ff6600);
    pointer-events: none;
}

.tiger-1 {
    top: 10%;
    left: 15%;
    animation: floatTiger1 20s ease-in-out infinite;
    animation-delay: 0s;
}

.tiger-2 {
    top: 20%;
    right: 10%;
    animation: floatTiger2 25s ease-in-out infinite;
    animation-delay: 3s;
}

.tiger-3 {
    bottom: 30%;
    left: 8%;
    animation: floatTiger3 18s ease-in-out infinite;
    animation-delay: 6s;
}

.tiger-4 {
    bottom: 15%;
    right: 15%;
    animation: floatTiger4 22s ease-in-out infinite;
    animation-delay: 9s;
}

.tiger-5 {
    top: 40%;
    left: 5%;
    animation: floatTiger5 28s ease-in-out infinite;
    animation-delay: 12s;
}

.tiger-6 {
    top: 60%;
    right: 5%;
    animation: floatTiger6 24s ease-in-out infinite;
    animation-delay: 15s;
}

.tiger-7 {
    top: 25%;
    left: 50%;
    animation: floatTiger7 26s ease-in-out infinite;
    animation-delay: 18s;
}

.tiger-8 {
    bottom: 40%;
    right: 45%;
    animation: floatTiger8 30s ease-in-out infinite;
    animation-delay: 21s;
}

/* Tiger floating animations */
@keyframes floatTiger1 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -20px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(50px, 15px) rotate(-3deg) scale(0.9);
        opacity: 0.7;
    }
    75% { 
        transform: translate(20px, 25px) rotate(8deg) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes floatTiger2 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    30% { 
        transform: translate(-40px, 20px) rotate(-8deg) scale(1.2);
        opacity: 0.8;
    }
    60% { 
        transform: translate(-15px, -30px) rotate(4deg) scale(0.8);
        opacity: 0.6;
    }
    90% { 
        transform: translate(-25px, 10px) rotate(-6deg) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes floatTiger3 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    20% { 
        transform: translate(35px, -15px) rotate(10deg) scale(0.9);
        opacity: 0.5;
    }
    40% { 
        transform: translate(60px, 25px) rotate(-5deg) scale(1.3);
        opacity: 0.8;
    }
    80% { 
        transform: translate(10px, -35px) rotate(15deg) scale(1.0);
        opacity: 0.6;
    }
}

@keyframes floatTiger4 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    35% { 
        transform: translate(-50px, -25px) rotate(-12deg) scale(1.1);
        opacity: 0.9;
    }
    70% { 
        transform: translate(-20px, 40px) rotate(7deg) scale(0.85);
        opacity: 0.4;
    }
}

@keyframes floatTiger5 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translate(45px, 30px) rotate(-15deg) scale(1.4);
        opacity: 0.6;
    }
    50% { 
        transform: translate(20px, -40px) rotate(20deg) scale(0.7);
        opacity: 1.0;
    }
    75% { 
        transform: translate(70px, 5px) rotate(-8deg) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes floatTiger6 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    40% { 
        transform: translate(-60px, 15px) rotate(25deg) scale(0.9);
        opacity: 0.9;
    }
    80% { 
        transform: translate(-30px, -50px) rotate(-10deg) scale(1.3);
        opacity: 0.4;
    }
}

@keyframes floatTiger7 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    33% { 
        transform: translate(-25px, 35px) rotate(-20deg) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translate(40px, -20px) rotate(12deg) scale(0.8);
        opacity: 0.6;
    }
}

@keyframes floatTiger8 {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    30% { 
        transform: translate(25px, -45px) rotate(18deg) scale(1.5);
        opacity: 0.3;
    }
    60% { 
        transform: translate(-40px, 20px) rotate(-25deg) scale(0.75);
        opacity: 0.9;
    }
    90% { 
        transform: translate(15px, 35px) rotate(8deg) scale(1.2);
        opacity: 0.7;
    }
}

/* Hero Center - Logo Orbit */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.logo-orbit {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px #ff6600);
    animation: logoRotate 20s linear infinite;
    z-index: 10;
    position: relative;
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orbit-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 340px;
    height: 340px;
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 50%;
    animation: orbitSpin 15s linear infinite reverse;
}

.orbit-ring-2 {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 153, 51, 0.2);
    border-radius: 50%;
    animation: orbitSpin 25s linear infinite;
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Title Container */
.hero-title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
}

.title-top {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    animation: titlePulse 4s ease-in-out infinite;
}

.title-bottom {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    animation: titlePulse 4s ease-in-out infinite 2s;
}

.cyber {
    color: #ff6600;
    font-size: 5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-shadow: 0 0 40px #ff6600;
    letter-spacing: 5px;
}

.tiger {
    color: #ffffff;
    font-size: 5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-shadow: 0 0 40px #ffffff;
    letter-spacing: 5px;
}

@keyframes titlePulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* Hero Corners */
.hero-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.corner-top-left {
    position: absolute;
    top: 100px;
    left: 100px;
    animation: cornerFloat 8s ease-in-out infinite;
}

.corner-top-right {
    position: absolute;
    top: 100px;
    right: 100px;
    animation: cornerFloat 8s ease-in-out infinite 2s;
}

.corner-bottom-left {
    position: absolute;
    bottom: 200px;
    left: 100px;
    animation: cornerFloat 8s ease-in-out infinite 4s;
}

.corner-bottom-right {
    position: absolute;
    bottom: 200px;
    right: 100px;
    animation: cornerFloat 8s ease-in-out infinite 6s;
}

.corner-text {
    color: #ff9933;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 20px #ff9933;
    letter-spacing: 3px;
    opacity: 0.8;
}

@keyframes cornerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-15px) rotate(2deg); opacity: 1; }
}

/* Hero Bottom */
.hero-bottom {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 6;
}

.hero-description {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.btn-whitepaper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid #ff6600;
    border-radius: 50px;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.1), rgba(255, 153, 51, 0.1));
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-whitepaper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-whitepaper:hover::before {
    left: 100%;
}

.btn-whitepaper:hover {
    background: linear-gradient(45deg, #ff6600, #ff9933);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6);
    border-color: #ff9933;
}

.btn-icon {
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ff6600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #ff6600;
    border-bottom: 2px solid #ff6600;
    transform: rotate(45deg);
    margin-bottom: 10px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #ff6600;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: #ff9933;
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #ff6600;
}

.stat p {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-tiger-animation {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiger-silhouette {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #ff6600, #ff9933);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation: tigerPulse 3s ease-in-out infinite;
}

@keyframes tigerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Features Section */
.features {
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    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(255, 102, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: #ff6600;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0%);
}

.feature-card h3 {
    color: #ff9933;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chart-container {
    width: 400px;
    height: 400px;
    position: relative;
    background: radial-gradient(circle, #ff6600, #ff9933);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.5);
}

.tokenomics-info {
    space-y: 40px;
}

.token-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.token-stat {
    text-align: center;
}

.token-stat h3 {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #ff6600;
}

.token-stat p {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.distribution h3 {
    color: #ff9933;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.dist-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
}

.dist-label {
    color: #cccccc;
    font-weight: 500;
}

.dist-value {
    color: #ff6600;
    font-weight: 700;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    color: #cccccc;
    padding: 8px 0;
    font-weight: 500;
}

/* Roadmap Section */
.roadmap {
    background: #0a0a0a;
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6600, #ff9933);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6600;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #ff6600;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333333;
    margin: 0 30px;
    position: relative;
}

.timeline-content h3 {
    color: #ff9933;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: #cccccc;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6600;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    border-color: #ff6600;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.partner-logo {
    font-size: 4rem;
    margin-bottom: 20px;
}

.partner-card h3 {
    color: #ff9933;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.partner-card p {
    color: #cccccc;
    margin-bottom: 15px;
}

.partner-type {
    background: #ff6600;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Social Section */
.social {
    background: #0a0a0a;
    text-align: center;
}

.social-content h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #ff6600;
}

.social-content p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #ffffff;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 10px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
}

.social-link:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.social-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon svg {
    transform: scale(1.2);
}

.telegram:hover {
    background: linear-gradient(135deg, #0088cc, #005599);
}

.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 2px solid #ff6600;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: #ff6600;
    font-size: 1.2rem;
}

.footer-text {
    text-align: right;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-center {
        transform: translate(-50%, -60%);
    }
    
    .logo-orbit {
        width: 200px;
        height: 200px;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .orbit-ring {
        top: -15px;
        left: -15px;
        width: 230px;
        height: 230px;
    }
    
    .orbit-ring-2 {
        top: -25px;
        left: -25px;
        width: 250px;
        height: 250px;
    }
    
    .title-top {
        top: -80px;
    }
    
    .title-bottom {
        bottom: -80px;
    }
    
    .cyber, .tiger {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-corners {
        display: none;
    }
    
    .tiger-head {
        font-size: 2rem;
    }
    
    .tiger-5, .tiger-6, .tiger-7, .tiger-8 {
        display: none;
    }
    
    .hero-bottom {
        bottom: 50px;
        padding: 0 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn-whitepaper {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .about-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .btn-whitepaper {
        width: 280px;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 20px 0;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cyber, .tiger {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .title-top {
        top: -60px;
    }
    
    .title-bottom {
        bottom: -60px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn-whitepaper {
        width: 260px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .tiger-head {
        font-size: 1.5rem;
    }
    
    .tiger-3, .tiger-4 {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
} 