@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0015;
    color: white;
    overflow-x: hidden;
    position: relative;
}

.countdown-section {
    margin: 40px 0;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

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

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 4em;
    font-weight: 900;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    font-weight: 600;
}

@media (max-width: 768px) {
    .countdown-number {
        font-size: 3em;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown {
        gap: 15px;
    }
}

.background-gradient {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 80px 20px 60px;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.logo {
    font-size: 6em;
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.8));
    animation: floatBounce 3s ease-in-out infinite;
}

.glow-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

h1 {
    font-size: 5em;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 0 80px rgba(236, 72, 153, 0.5);
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.8em;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
}

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

.cta-button {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 22px 55px;
    font-size: 1.3em;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.6);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 80px 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.4);
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p {
    font-size: 1.1em;
    line-height: 1.7;
    opacity: 0.85;
    font-weight: 300;
}

.tokenomics {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(20px);
    padding: 80px 40px;
    text-align: center;
    border-radius: 40px;
    margin: 60px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

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

.tokenomics-content {
    position: relative;
    z-index: 1;
}

.tokenomics h2 {
    font-size: 2.8em;
    margin-bottom: 60px;
    font-weight: 900;
    color: white;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}

.stat {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.stat-number {
    font-size: 3em;
    font-weight: 900;
    background: linear-gradient(135deg, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    line-height: 1.2;
}

.stat-label {
    font-size: 1em;
    margin-top: 15px;
    font-weight: 300;
    opacity: 0.9;
}

.floating-photos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-photo {
    position: absolute;
    pointer-events: auto;
}

.floating-photo-1 {
    top: 15%;
    right: 5%;
    animation: floatPhoto1 6s ease-in-out infinite;
}

.floating-photo-2 {
    bottom: 20%;
    left: 3%;
    animation: floatPhoto2 7s ease-in-out infinite;
}

.floating-photo-3 {
    top: 50%;
    right: 8%;
    animation: floatPhoto3 8s ease-in-out infinite;
}

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

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

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

.photo-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
}

.photo-frame:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.6);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.roadmap-section {
    padding: 100px 20px;
    text-align: center;
}

.roadmap-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    color: white;
}

.roadmap-subtitle {
    font-size: 1.5em;
    margin-bottom: 80px;
    font-weight: 300;
    opacity: 0.85;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ec4899, #8b5cf6, #3b82f6);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

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

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.5);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.roadmap-content {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 25px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-right: auto;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: auto;
}

.roadmap-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.roadmap-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ec4899;
}

.roadmap-content p {
    font-size: 1.05em;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 15px;
}

.status {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    white-space: nowrap;
}

.status.active {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.4);
}

.status.upcoming {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.social-section {
    padding: 100px 20px;
    text-align: center;
}

.social-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 900;
    color: white;
}

.social-subtitle {
    font-size: 1.5em;
    margin-bottom: 60px;
    font-weight: 300;
    opacity: 0.85;
}

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

.social-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
    transition: left 0.6s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.4);
    border-color: rgba(236, 72, 153, 0.6);
}

.social-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.social-card h3 {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.social-card p {
    font-size: 1.1em;
    opacity: 0.8;
    font-weight: 300;
}

.final-cta {
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 900;
}

.final-cta p {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

footer {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 10px 0;
    font-weight: 300;
}

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

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

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

.particle {
    position: fixed;
    pointer-events: none;
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .floating-photos {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 60px 20px;
    }

    .floating-photo {
        display: block;
        position: relative;
        margin: 0;
        width: 180px;
        height: 180px;
        animation: none !important;
    }

    .floating-photo-1,
    .floating-photo-2,
    .floating-photo-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .photo-frame {
        display: block;
        width: 180px;
        height: 180px;
    }

    .photo-frame img {
        display: block;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    .tagline {
        font-size: 1.1em;
    }
    .logo {
        font-size: 4em;
    }
    .features {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .roadmap-timeline::before {
        left: 29.5px;
        width: 1px;
        z-index: 1;
    }

    .roadmap-item {
        position: relative;
        display: block;
        padding-left: 90px;
        margin-left: 0;
        margin-bottom: 60px;
    }

    .roadmap-item:nth-child(even) {
        display: block;
        flex-direction: row;
    }

    .roadmap-icon {
        position: absolute;
        left: -0.5px;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        font-size: 2em;
        z-index: 2;
        margin: 0;
    }

    .roadmap-content,
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        width: 100%;
        margin: 0;
        padding: 25px 20px;
        text-align: center;
    }

    .roadmap-content h3 {
        font-size: 1.2em;
    }

    .roadmap-content p {
        font-size: 0.9em;
    }

    .tokenomics h2 {
        font-size: 1.8em;
    }

    .stat {
        min-width: 120px;
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.8em;
    }

    .stat-label {
        font-size: 0.85em;
    }

    .roadmap-title,
    .social-title {
        font-size: 2em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 18px 35px;
    }

    .final-cta h2 {
        font-size: 2em;
    }

    .final-cta p {
        font-size: 1.1em;
    }

    .tokenomics p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .stat-number {
        font-size: 1.5em;
    }

    .stat-label {
        font-size: 0.75em;
    }

    .tokenomics h2 {
        font-size: 1.5em;
    }

    .tokenomics p {
        font-size: 0.85em;
    }

    .roadmap-title,
    .social-title {
        font-size: 1.5em;
    }

    .final-cta h2 {
        font-size: 1.8em;
    }
}