* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #013220;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    color: #016b38;
}

.social-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

/* Responsive grid */
@media (min-width: 640px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Custom SVG container for easy replacement */
.custom-svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.username {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Instagram cards */
.instagram {
    background: linear-gradient(135deg, #ff006e, #8338ec, #ffbe0b);
}

/* Next Social card */
.next-social {
    background: linear-gradient(135deg, rgb(57, 211, 198), #151396);
}

/* X (Twitter) card */
.x-twitter {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

/* TikTok card */
.tiktok {
    background: linear-gradient(135deg, #111111, #2a2a2a);
}

/* Facebook card */
.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

/* Subtle animation for page load */
.social-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    color: #013220;
}
.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'TikTok Sans', sans-serif;
}
.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}

.social-card:nth-child(1) { animation-delay: 0.1s; }
.social-card:nth-child(2) { animation-delay: 0.2s; }
.social-card:nth-child(3) { animation-delay: 0.3s; }
.social-card:nth-child(4) { animation-delay: 0.4s; }
.social-card:nth-child(5) { animation-delay: 0.5s; }
.social-card:nth-child(6) { animation-delay: 0.6s; }
.social-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 639px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    body {
        padding: 1rem 0.5rem;
    }
    .page-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        font-family: 'TikTok Sans', sans-serif;
    }
    .page-subtitle {
        font-size: 1.2rem;
        font-weight: 300;
        opacity: 0.9;
        margin-right: 10px;
        margin-left: 10px;
    }
}