.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.header h1 {
    color: black;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header p {
    color: black;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Cards Container */
.cards-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Styles */
.social-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* backdrop-filter: blur(10px);
    position: relative; */
    overflow: hidden;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.card-content {
    flex: 1;
    text-align: left;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
}

.card-description {
    color: #718096;
    font-size: 0.75rem;
    line-height: 1.4;
}

.download-arrow {
    font-size: 24px;
    color: #4a5568;
    transition: transform 0.3s ease;
}

.social-card:hover .download-arrow {
    transform: translateX(5px);
}

/* Platform-specific colors */
.instagram .card-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook .card-icon {
    background: linear-gradient(45deg, #3b5998, #4267B2);
}

.youtube .card-icon {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.tiktok .card-icon {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.snapchat .card-icon {
    background: linear-gradient(45deg, #FFFC00, #FFD700);
    color: #333 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .social-card {
        /* flex-direction: column; */
        text-align: center;
        gap: 15px;
        padding: 9px;
    }

    .card-icon {
       width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .header {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .social-card {
        padding: 15px;
    }

    .card-title {
        font-size: 1rem;
    }
}


a {
    text-decoration: none;
    color: inherit;
}


.language-list {
    list-style: none;
    padding: 0px 40px;
    max-width: 700px;
}

.language-list .redirect {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #61746159;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* .language-list .redirect:hover {
    background-color: #617461d2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
} */


/* Circle Loader */
.circle-loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.ad-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    text-align: center;
}