/* 
 * Toonz Gaming Final CTA - Cinematic Styling
 */

.toonz-gaming-fcta-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #0b0c10;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Outfit', 'Inter', sans-serif;
    padding: 100px 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* --- Parallax Background --- */
.gfcta-bg-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gfcta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Gradient overlay on the left to ensure text readability */
.gfcta-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.7) 50%, rgba(11, 12, 16, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.gfcta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* --- Left Column: Content --- */
.gfcta-content-col {
    display: flex;
    flex-direction: column;
    max-width: 650px;
}

/* --- Headline --- */
.gfcta-headline {
    font-family: 'Times New Roman', Times, serif;
    /* Cinematic serif feel */
    font-size: 68px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 25px 0;
    color: #fff;
    letter-spacing: -0.5px;
}

.gfcta-headline .accent {
    color: #C49767;
    display: block;
}

/* --- Divider --- */
.gfcta-divider {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    width: 100%;
    max-width: 300px;
    gap: 15px;
}

.gfcta-divider-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, #C49767, rgba(196, 151, 103, 0));
}

.gfcta-divider-diamond {
    width: 6px;
    height: 6px;
    background-color: #C49767;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(196, 151, 103, 0.5);
}

/* --- Description --- */
.gfcta-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin: 0 0 45px 0;
    font-weight: 300;
}

/* --- Buttons --- */
.gfcta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.gfcta-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gfcta-btn i {
    margin-right: 15px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.gfcta-btn:hover i {
    transform: translateX(5px);
}

/* Primary Button */
.gfcta-btn-primary {
    background: linear-gradient(135deg, #a37340 0%, #C49767 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(196, 151, 103, 0.2);
}

.gfcta-btn-primary:hover {
    box-shadow: 0 15px 40px rgba(196, 151, 103, 0.35);
    filter: brightness(1.1);
    color: #fff;
}

/* Secondary Button */
.gfcta-btn-secondary {
    background: rgba(11, 12, 16, 0.6);
    color: #ccc;
    border: 1px solid rgba(196, 151, 103, 0.4);
    backdrop-filter: blur(5px);
}

.gfcta-btn-secondary:hover {
    background: rgba(196, 151, 103, 0.1);
    border-color: #C49767;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .gfcta-container {
        grid-template-columns: 1fr;
    }

    .gfcta-overlay-gradient {
        width: 100%;
        background: rgba(11, 12, 16, 0.85);
    }

    .gfcta-headline {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .gfcta-headline {
        font-size: 42px;
    }

    .gfcta-buttons {
        max-width: 100%;
    }
}