* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.comic-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: radial-gradient(circle at 20% 20%, #ff6b6b 0%, transparent 50%), radial-gradient(circle at 80% 80%, #4ecdc4 0%, transparent 50%), radial-gradient(circle at 40% 60%, #45b7d1 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.logo-section {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.tagline {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.years-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-card, .facebook-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-card:hover, .facebook-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    }

.card-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

    .card-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(45deg, #ff6b6b, #feca57);
        margin: 10px auto;
        border-radius: 2px;
    }

.contact-info {
    font-size: 1rem;
    line-height: 1.8;
}

    .contact-info i {
        color: #ff6b6b;
        margin-right: 10px;
        width: 20px;
    }

.facebook-cta {
    text-align: center;
}

.fb-button {
    display: inline-block;
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
}

    .fb-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .fb-button:hover::before {
        left: 100%;
    }

    .fb-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    }

.fb-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Comic Elements */
.comic-bubble {
    position: absolute;
    background: #fff;
    border: 3px solid #333;
    border-radius: 20px;
    padding: 15px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: bounce 3s infinite;
}

.bubble-1 {
    top: 20%;
    right: 10%;
    transform: rotate(-5deg);
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 20%;
    left: 5%;
    transform: rotate(3deg);
    animation-delay: 1.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

.bubble-1 {
    --rotation: -5deg;
}

.bubble-2 {
    --rotation: 3deg;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Ensure body takes full height */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .comic-bubble {
        display: none;
    }

    .info-card, .facebook-card {
        padding: 20px;
    }
}

/* Floating particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 107, 0.6);
    border-radius: 50%;
    animation: floatUp 6s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}
