/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Social Media Fixed Buttons */
.social-media-fixed {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-fixed-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.telegram-fixed {
    background: linear-gradient(135deg, #0088cc, #0099cc);
}

.twitter-fixed {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.whatsapp-fixed {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.email-fixed {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.social-fixed-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .social-media-fixed {
        right: 15px;
        gap: 0.8rem;
    }
    
    .social-fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

body {
    font-family: 'Comfortaa', 'Nunito', cursive;
    background: linear-gradient(135deg, #FFB000 0%, #FF8C00 30%, #FF6B35 60%, #D2691E 90%, #C6930A 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 176, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #FFB000;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    padding: 3px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #FFD700;
}


.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500, #CFB53B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #FFB000, #FF8C00);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 176, 0, 0.5);
    font-weight: 900;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 10px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: #6366f1;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
}

.cta-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}



/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #1e293b;
    text-shadow: 3px 3px 0px rgba(255, 168, 0, 0.3);
}

.tokenomics .section-title,
.contact .section-title {
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.emoji {
    font-size: 2.5rem;
    display: inline-block;
    margin: 0 10px;
}

.tokenomics .section-title,
.contact .section-title {
    color: white;
}

/* About Section */
.about {
    background: #FFFBF0;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.about-card {
    text-align: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: #FFFFFF;
    padding: 3rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    border: 4px solid #FFFFFF;
}

.about-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #FFFDE7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-image-section {
    text-align: center;
    margin: 3rem 0;
}

.about-main-image {
    max-width: 350px;
    height: auto;
    border-radius: 30px;
    border: 5px solid #6366f1;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
}

.about-main-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.5);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #FFFBF0, #FFF8E1);
    padding: 2.5rem;
    border-radius: 30px;
    border: 4px solid;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1) { border-color: #6366f1; background: linear-gradient(135deg, #E0E7FF, #C7D2FE); }
.feature-card:nth-child(2) { border-color: #8b5cf6; background: linear-gradient(135deg, #EDE9FE, #DDD6FE); }
.feature-card:nth-child(3) { border-color: #ec4899; background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.wiggle {
    animation: wiggle 3s infinite;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    color: #4F46E5;
}

.feature-card:nth-child(2) h4 {
    color: #7C3AED;
}

.feature-card:nth-child(3) h4 {
    color: #DB2777;
}

.feature-card p {
    color: #475569;
    font-weight: 600;
}


/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #ec4899 60%, #d946ef 90%, #a855f7 100%);
    color: #ffffff;
}

.tokenomics-image-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.tokenomics-main-image {
    max-width: 300px;
    height: auto;
    border-radius: 25px;
    border: 5px solid #6366f1;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
    transition: all 0.3s;
}

.tokenomics-main-image:hover {
    transform: scale(1.05);
}

.tokenomics-content {
    max-width: 900px;
    margin: 0 auto;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tokenomics-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.token-percentage {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.token-emoji-eygpt {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.phase-emoji-eyptian {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border: 4px solid white;
    font-size: 2.5rem;
}

.total-supply {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: all 0.3s;
}

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.token-emoji {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.tokenomics-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.contract-image-in-card {
    text-align: center;
    margin-bottom: 2rem;
}

.contract-image {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.contract-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.contract-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contract-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    gap: 1rem;
}

.contract-box code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: white;
    word-break: break-all;
}

.copy-btn {
    background: white;
    color: #6366f1;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 0.85rem;
}

.copy-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Roadmap Section */
.roadmap {
    background: #FFFBF0;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.phase-emoji {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border: 4px solid white;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, #FFFBF0, #FFF8E1);
    padding: 2.5rem;
    border-radius: 30px;
    border: 3px solid #FFB000;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #6366f1;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding-left: 2rem;
    position: relative;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.slide-in {
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-radius: 50px 50px 0 0;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    font-weight: 700;
    font-size: 1.2rem;
}

.social-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 2rem !important;
    color: #6366f1;
}

.social-icon.telegram i {
    color: #0088cc;
}

.social-icon.twitter i {
    color: #1DA1F2;
}

.social-icon.whatsapp i {
    color: #25D366;
}

.social-icon.email i {
    color: #6366f1;
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.social-link:hover .social-icon {
    transform: scale(1.2);
}

.bounce-social {
    animation: bounce 2s infinite;
}

/* Footer */
.footer {
    background: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 4px solid #6366f1;
}

.footer p {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
}

.heart {
    animation: heartBeat 1s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .logo-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .emoji {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.8rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
    
    .about-main-image {
        max-width: 250px;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .tokenomics-main-image {
        max-width: 200px;
    }
    
    .token-percentage {
        font-size: 2rem;
    }
    
    .tokenomics-card {
        padding: 1.5rem;
    }
    
    .contract-image {
        max-width: 200px;
    }
    
    .contract-card {
        padding: 1.5rem;
    }
    
    .contract-card h3 {
        font-size: 1.3rem;
    }
    
    .contract-box {
        flex-direction: column;
        padding: 1rem;
    }
    
    .contract-box code {
        font-size: 0.75rem;
    }
    
    .copy-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .phase-emoji, .phase-emoji-eyptian {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .total-supply {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .social-link {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .social-icon i {
        font-size: 1.5rem !important;
    }
    
    .footer p {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        background: white;
        flex-direction: column;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: right 0.3s;
        border-radius: 0 0 30px 30px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .tokenomics-grid,
    .features-grid,
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .tokenomics-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}
