/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main content */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Social card styles */
.social-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.social-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-card a, .social-card p {
    color: #3a7bd5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.social-card a:hover {
    color: #00d2ff;
    text-decoration: underline;
}

/* Social icon colors */
.facebook {
    background-color: #1877F2;
}

.twitter {
    background-color: #1DA1F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.snapchat {
    background-color: #FFFC00;
    color: #000 !important;
}

.linkedin {
    background-color: #0077B5;
}

.threads {
    background-color: #000000;
}

.telegram {
    background-color: #0088cc;
}

.tiktok {
    background-color: #000000;
}

.whatsapp {
    background-color: #25D366;
}

.youtube {
    background-color: #FF0000;
}

.pinterest {
    background-color: #E60023;
}

/* Generic icon colors for less common platforms */
.cheelee, .rumble, .hive, .wescoop, .tango,
.bigo, .tilive, .fanbase, .likee,
.main, .looky, .truth, .litit {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .social-card {
        padding: 1rem;
    }
}
