/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(135deg, #F17154 0%, #9379C8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Image (placeholder for future image) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.7;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    text-align: center;
    padding: 40px 0 60px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.motto {
    font-size: 24px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

/* SBC Offer Section */
.sbc-offer {
    padding: 0 0 60px;
    display: flex;
    justify-content: center;
}

.sbc-button-container {
    width: 100%;
    max-width: 800px;
}

.sbc-button {
    display: block;
    width: 100%;
    background: linear-gradient(-45deg, #F17154, #9379C8, #DAE5E8, #F17154, #9379C8);
    background-size: 400% 400%;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(241, 113, 84, 0.3);
    animation: gradientWave 4s ease-in-out infinite, floatingButton 6s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
}

.sbc-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(241, 113, 84, 0.8), 0 0 30px rgba(147, 121, 200, 0.6);
    animation-duration: 2s, 3s, 1.5s;
}

.sbc-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.sbc-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.sbc-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sbc-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sbc-cta {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Shimmer Effect */
/* Modern Animated Effects */
.sbc-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    animation: rotatingShine 4s linear infinite;
    z-index: 1;
}

.sbc-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #F17154, #9379C8, #DAE5E8, #F17154);
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    opacity: 0.7;
    filter: blur(8px);
}

/* New Modern Animations */
@keyframes gradientWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatingButton {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(0.5deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-0.5deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(241, 113, 84, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(241, 113, 84, 0.6), 0 0 30px rgba(147, 121, 200, 0.4); }
}

@keyframes rotatingShine {
    0% { transform: rotate(0deg) translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(360deg) translateX(100%); opacity: 0; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Video Section */
.video-section {
    padding: 0 0 60px;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Actions Section */
.actions-section {
    padding: 0 0 60px;
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.action-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 16px;
}

.action-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.button-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}


/* Responsive Design */
/* Desktop styles - single column for action buttons */
@media (min-width: 769px) {
    .buttons-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 0 40px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .motto {
        font-size: 18px;
    }
    
    .sbc-offer {
        padding: 0 0 40px;
    }
    
    .sbc-button {
        padding: 30px 25px;
    }
    
    .sbc-content {
        text-align: center;
    }
    
    .sbc-title {
        font-size: 26px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .sbc-subtitle {
        font-size: 18px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .sbc-cta {
        font-size: 14px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .action-button {
        padding: 20px 15px;
        font-size: 14px;
    }
    
    .button-icon {
        width: 28px;
        height: 28px;
    }
    
    .video-section {
        padding: 0 0 40px;
    }
}

@media (max-width: 480px) {
    .motto {
        font-size: 16px;
    }
    
    .sbc-title {
        font-size: 22px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .sbc-subtitle {
        font-size: 16px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .sbc-cta {
        font-size: 13px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .action-button {
        padding: 18px 12px;
        font-size: 13px;
    }
}
