﻿/* Slot Page Specific Styles - Different Design */

/* Hero Section - Card Style */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(34, 139, 34, 0.08));
    border: 3px solid #9B59B6;
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
}

/* Hero Title - Gradient Text */
.hero-title {
    text-align: center;
    background: linear-gradient(135deg, #9B59B6, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.6em;
    font-weight: 900;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

/* Promo Text - Card Style */
.promo-text {
    background: rgba(13, 40, 24, 0.7);
    border-left: 4px solid #9B59B6;
    color: #f5f5f5;
    font-size: 1.05em;
    padding: 20px 25px;
    margin: 0 0 30px 0;
    line-height: 1.8;
    text-align: left;
    border-radius: 8px;
}

.promo-banner-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    margin: 25px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-cta .btn {
    font-size: 1.15em;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Sections - Modern Card Design */
.content-section {
    margin: 70px 0;
}

.content-block {
    background: linear-gradient(145deg, rgba(13, 40, 24, 0.8), rgba(20, 30, 20, 0.6));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.content-block:hover {
    border-color: #9B59B6;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px) scale(1.01);
    background: linear-gradient(145deg, rgba(13, 40, 24, 0.9), rgba(20, 30, 20, 0.7));
}

.content-block-left {
    flex-direction: row;
}

.content-block-right {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    color: #9B59B6;
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
}

.content-text p {
    color: #e8e8e8;
    font-size: 1.05em;
    line-height: 1.9;
    margin-bottom: 30px;
}

.content-text .btn {
    margin-top: 25px;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.content-text .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.content-image-wrapper {
    flex-shrink: 0;
    width: 380px;
    position: relative;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    display: block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.content-image:hover {
    transform: scale(1.05);
    border-color: #9B59B6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        border-radius: 0;
        margin: 20px 0;
        padding: 35px 20px;
    }
    
    .hero-title {
        font-size: 1.9em;
        margin-bottom: 20px;
    }
    
    .promo-text {
        padding: 15px 20px;
        font-size: 1em;
    }
    
    .content-block {
        flex-direction: column !important;
        padding: 30px 20px;
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        gap: 30px;
    }
    
    .content-block-left,
    .content-block-right {
        flex-direction: column !important;
    }
    
    .content-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .content-image {
        width: 100%;
    }
    
    .content-text {
        width: 100%;
    }
    
    .content-text h2 {
        font-size: 1.6em;
    }
    
    .hero-cta {
        gap: 15px;
    }
    
    .hero-cta .btn {
        font-size: 1em;
        padding: 14px 28px;
    }
}
