@import url("css2-1.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: white;
    color: #333;
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-padding-top: 80px;
}

body {
    position: relative;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation .feature-card,
.stagger-animation .partner-item,
.stagger-animation .timer-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-animation.visible .feature-card:nth-child(1),
.stagger-animation.visible .partner-item:nth-child(1),
.stagger-animation.visible .timer-item:nth-child(1) {
    animation: staggerFade 0.6s ease-out 0.1s forwards;
}

.stagger-animation.visible .feature-card:nth-child(2),
.stagger-animation.visible .partner-item:nth-child(2),
.stagger-animation.visible .timer-item:nth-child(2) {
    animation: staggerFade 0.6s ease-out 0.2s forwards;
}

.stagger-animation.visible .feature-card:nth-child(3),
.stagger-animation.visible .partner-item:nth-child(3),
.stagger-animation.visible .timer-item:nth-child(3) {
    animation: staggerFade 0.6s ease-out 0.3s forwards;
}

.stagger-animation.visible .feature-card:nth-child(4),
.stagger-animation.visible .partner-item:nth-child(4),
.stagger-animation.visible .timer-item:nth-child(4) {
    animation: staggerFade 0.6s ease-out 0.4s forwards;
}

.stagger-animation.visible .feature-card:nth-child(5),
.stagger-animation.visible .partner-item:nth-child(5) {
    animation: staggerFade 0.6s ease-out 0.5s forwards;
}

.stagger-animation.visible .feature-card:nth-child(6),
.stagger-animation.visible .partner-item:nth-child(6) {
    animation: staggerFade 0.6s ease-out 0.6s forwards;
}

@keyframes staggerFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    width: 200px;
}

.logo-img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    justify-content: center;
}

.nav-button {
    background: none;
    border: none;
    color: #666;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-button:hover {
    background-color: #e9ecef;
    color: #37C5A1;
    text-decoration: none;
}

.header-right {
    width: 200px;
    display: flex;
    justify-content: flex-end;
}

.connect-wallet-btn {
    background-color: #37C5A1;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    background-color: #2da88a;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        width: auto;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .header-center {
        display: none;
    }
    
    .header-right {
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .connect-wallet-btn {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
        min-width: 120px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .connect-wallet-btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
    }
}

.hero {
    background: url("herobg.png") center center/cover no-repeat;
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(55, 197, 161, 0.2);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
        justify-content: center;
        text-align: center;
    }
    
    .live-banner {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        max-width: 280px;
        gap: 14px;
    }
    
    .hero-btn {
        font-size: 14px;
        padding: 14px 20px;
        max-width: 260px;
    }
}

.live-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(55, 197, 161, 0.15);
    border: 1px solid #37C5A1;
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #37C5A1;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #37C5A1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.live-text {
    color: #37C5A1;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.accent-text {
    color: #37C5A1;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-btn.primary {
    background-color: #37C5A1;
    color: white;
    border: none;
}

.hero-btn.primary:hover {
    background-color: #2da88a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 197, 161, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: #37C5A1;
    border: 2px solid #37C5A1;
}

.hero-btn.secondary:hover {
    background-color: #37C5A1;
    color: white;
    transform: translateY(-2px);
}


.about-section {
    background-color: white;
    padding: 80px 0;
    border-bottom: 1px solid rgba(55, 197, 161, 0.2);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.about-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(55, 197, 161, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(55, 197, 161, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(55, 197, 161, 0.1);
    border-color: rgba(55, 197, 161, 0.2);
    transform: translateY(-2px);
}

.feature-number {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #37C5A1;
    margin-bottom: 8px;
}

.feature-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-background {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(55, 197, 161, 0.1) 0%, rgba(55, 197, 161, 0.05) 50%, rgba(55, 197, 161, 0.02) 100%);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.image-background::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(55, 197, 161, 0.08);
    border-radius: 20px;
    z-index: 1;
}

.vine-logo {
    width: 350px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.vine-logo:hover {
    transform: scale(1.05);
}

.image-background:hover {
    background: linear-gradient(135deg, rgba(55, 197, 161, 0.15) 0%, rgba(55, 197, 161, 0.08) 50%, rgba(55, 197, 161, 0.03) 100%);
}


@media (max-width: 992px) {
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .image-background {
        width: 350px;
        height: 350px;
    }
    
    .image-background::before {
        width: 300px;
        height: 300px;
    }
    
    .vine-logo {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text {
        gap: 20px;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 15px;
    }
    
    .image-background {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .image-background::before {
        width: 240px;
        height: 240px;
    }
    
    .vine-logo {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        padding: 0 10px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .feature-number {
        font-size: 1.25rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .image-background {
        width: 240px;
        height: 240px;
    }
    
    .image-background::before {
        width: 200px;
        height: 200px;
    }
    
    .vine-logo {
        width: 180px;
    }
}


.features-section {
    background-color: white;
    padding: 80px 0;
    color: #333;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(55, 197, 161, 0.1) 0%, rgba(45, 168, 138, 0.15) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid rgba(55, 197, 161, 0.2);
    box-shadow: 0 4px 15px rgba(55, 197, 161, 0.1);
    color: #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(55, 197, 161, 0.2);
    background: linear-gradient(135deg, rgba(55, 197, 161, 0.15) 0%, rgba(45, 168, 138, 0.2) 100%);
    border-color: rgba(55, 197, 161, 0.4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #37C5A1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    shape-rendering: geometricPrecision;
    stroke-linecap: round;
    stroke-linejoin: round;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.feature-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.feature-description {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


.partners-section {
    background-color: white;
    padding: 80px 0;
    color: #333;
    text-align: center;
    border-bottom: 1px solid rgba(55, 197, 161, 0.2);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-header {
    margin-bottom: 60px;
}

.partners-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partners-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
    justify-items: center;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(55, 197, 161, 0.05);
    border: 1px solid rgba(55, 197, 161, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 140px;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.partner-item:hover {
    background: rgba(55, 197, 161, 0.1);
    border-color: rgba(55, 197, 161, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(55, 197, 161, 0.2);
    text-decoration: none;
}

.partner-logo {
    width: 80px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-item:hover .partner-logo {
    opacity: 1;
    transform: scale(1.1);
}

.partner-name {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #37C5A1;
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partners-title {
        font-size: 2rem;
    }
}


@media (max-width: 992px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-container {
        padding: 0 15px;
    }
    
    .partners-header {
        margin-bottom: 40px;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .partner-item {
        padding: 25px;
        min-height: 120px;
    }
    
    .partner-logo {
        width: 70px;
        max-height: 45px;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-header {
        margin-bottom: 30px;
    }
    
    .partners-title {
        font-size: 1.75rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-item {
        padding: 20px;
        min-height: 110px;
    }
    
    .partner-logo {
        width: 60px;
        max-height: 40px;
    }
    
    .partner-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-container {
        padding: 0 10px;
    }
    
    .partners-title {
        font-size: 1.5rem;
    }
    
    .partners-subtitle {
        font-size: 0.95rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-item {
        padding: 18px;
        min-height: 100px;
    }
    
    .partner-logo {
        width: 55px;
        max-height: 35px;
    }
    
    .partner-name {
        font-size: 0.7rem;
    }
}


.countdown-section {
    background: white url("timerbg.png") center center/cover no-repeat;
    padding: 80px 0;
    color: #333;
    text-align: center;
    border-top: 1px solid rgba(55, 197, 161, 0.2);
    border-bottom: 1px solid rgba(55, 197, 161, 0.2);
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.countdown-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.countdown-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.countdown-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.countdown-timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(55, 197, 161, 0.05);
    border: 2px solid #37C5A1;
    border-radius: 16px;
    padding: 24px 20px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.timer-item:hover {
    border-color: #2da88a;
    background: rgba(55, 197, 161, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 197, 161, 0.2);
}

.timer-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #37C5A1;
    line-height: 1;
    margin-bottom: 8px;
}

.timer-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-btn {
    background: linear-gradient(135deg, #37C5A1 0%, #2da88a 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-btn:hover {
    background: linear-gradient(135deg, #2da88a 0%, #37C5A1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 197, 161, 0.4);
}

@media (max-width: 640px) {
    .countdown-timer {
        gap: 15px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 20px 16px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
}


@media (max-width: 992px) {
    .countdown-section {
        padding: 60px 0;
    }
    
    .countdown-container {
        padding: 0 15px;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-subtitle {
        font-size: 1rem;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 20px 16px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .timer-label {
        font-size: 0.8rem;
    }
    
    .countdown-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .countdown-section {
        padding: 50px 0;
    }
    
    .countdown-content {
        gap: 25px;
    }
    
    .countdown-title {
        font-size: 1.75rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .timer-item {
        min-width: 70px;
        padding: 18px 14px;
    }
    
    .timer-number {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .countdown-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        padding: 40px 0;
    }
    
    .countdown-container {
        padding: 0 10px;
    }
    
    .countdown-content {
        gap: 20px;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .countdown-subtitle {
        font-size: 0.95rem;
    }
    
    .countdown-timer {
        gap: 10px;
        justify-content: center;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .timer-label {
        font-size: 0.7rem;
    }
    
    .countdown-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
        display: block;
    }
}


.footer {
    background-color: #fafafa;
    border-top: 1px solid rgba(55, 197, 161, 0.1);
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(55, 197, 161, 0.1);
    border-radius: 8px;
    color: #37C5A1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #37C5A1;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 992px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 12px;
        justify-content: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 0;
    }
    
    .footer-container {
        padding: 0 10px;
        gap: 15px;
    }
    
    .footer-logo-img {
        width: 24px;
        height: 24px;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}


.flying-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px rgba(55, 197, 161, 0.4));
}

.particle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.particle-1 {
    top: 15%;
    left: 65%;
    width: 25px;
    height: 25px;
    animation: float1 12s ease-in-out infinite;
}

.particle-2 {
    top: 55%;
    left: 85%;
    width: 20px;
    height: 20px;
    animation: float2 10s ease-in-out infinite;
}

.particle-3 {
    top: 25%;
    left: 15%;
    width: 30px;
    height: 30px;
    animation: float3 15s ease-in-out infinite;
}

.particle-4 {
    top: 75%;
    left: 35%;
    width: 18px;
    height: 18px;
    animation: float4 9s ease-in-out infinite;
}

.particle-5 {
    top: 35%;
    left: 75%;
    width: 22px;
    height: 22px;
    animation: float5 11s ease-in-out infinite;
}

.particle-6 {
    top: 80%;
    left: 60%;
    width: 16px;
    height: 16px;
    animation: float6 13s ease-in-out infinite;
}

.particle-7 {
    top: 45%;
    left: 25%;
    width: 28px;
    height: 28px;
    animation: float7 14s ease-in-out infinite;
}

.particle-8 {
    top: 65%;
    left: 10%;
    width: 19px;
    height: 19px;
    animation: float8 8s ease-in-out infinite;
}


@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 40px) rotate(180deg); }
    75% { transform: translate(30px, -20px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 30px) rotate(120deg); }
    66% { transform: translate(60px, -40px) rotate(240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(30px, 50px) rotate(72deg); }
    40% { transform: translate(-50px, -30px) rotate(144deg); }
    60% { transform: translate(40px, 20px) rotate(216deg); }
    80% { transform: translate(-30px, -50px) rotate(288deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(70px, -60px) rotate(180deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-60px, 40px) rotate(90deg); }
    50% { transform: translate(40px, -50px) rotate(180deg); }
    75% { transform: translate(-30px, 60px) rotate(270deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(45px, 35px) rotate(120deg); }
    66% { transform: translate(-35px, -45px) rotate(240deg); }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-55px, -25px) rotate(90deg); }
    50% { transform: translate(25px, 55px) rotate(180deg); }
    75% { transform: translate(55px, -35px) rotate(270deg); }
}

@keyframes float8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, -40px) rotate(180deg); }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #37C5A1;
    margin-bottom: 20px;
    font-weight: 500;
}

p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
}


.accent-color {
    color: #37C5A1;
}

.accent-bg {
    background-color: #37C5A1;
    color: white;
}


@media (max-width: 992px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
        min-height: 120px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
        min-height: 100px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 18px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-title {
        font-size: 14px;
    }
    
    .feature-description {
        font-size: 11px;
    }
}


