:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --font-heading: 'Alice', serif;
    --font-body: 'Faustina', serif;
    --transition-speed: 0.3s;
    --modal-shadow: 0 10px 25px rgba(0,0,0,0.2);
    --modal-radius: 8px;
    --modal-top-padding: 2rem;
    --modal-bottom-padding: 2rem;
    --section-maxwidth: 1520px;
    --premium-accent: #8e44ad;
    --games-accent: #16a085;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

.fc-header-container {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.fc-header-topbar {
    background-color: var(--accent-color);
    padding: 0.5rem 2rem;
    position: relative;
}

.fc-header-responsibility {
    text-align: center;
    font-size: 0.9rem;
    max-width: 1520px;
    margin: 0 auto;
    position: relative;
    padding-right: 2rem;
}

.fc-header-closebtn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
}

.fc-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1520px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.fc-header-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-color);
}

.fc-header-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.fc-header-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.fc-header-links a {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition-speed);
}

.fc-header-links a:hover {
    color: var(--accent-color);
}

.fc-header-actions {
    display: flex;
    gap: 1rem;
}

.fc-header-buyticket, .fc-header-contact {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
}

.fc-header-buyticket {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.fc-header-contact {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.fc-header-buyticket:hover {
    background-color: #f1c40f;
    transform: translateY(-2px);
}

.fc-header-contact:hover {
    background-color: rgba(255,255,255,0.1);
}

[class*="modal-overlay"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 2000;
    overflow-y: auto;
}

[class*="modal-overlay"].active {
    display: flex;
}

[class*="modal-container"] {
    background-color: white;
    padding: 2rem;
    border-radius: var(--modal-radius);
    width: 100%;
    max-width: 600px;
    top: 0;
    position: relative;
    box-shadow: var(--modal-shadow);
    margin: 1rem;
}

[class*="modal-close"] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    transition: color var(--transition-speed);
    background: none;
    border: none;
    padding: 0.5rem;
}

[class*="modal-close"]:hover {
    color: var(--secondary-color);
}

.fc-ticketmodal-overlay {
    animation: fadeIn 0.5s ease-out;
}

.fc-ticketmodal-container {
    animation: modalEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fc-contactmodal-overlay {
    animation: fadeIn 0.5s ease-out;
}

.fc-contactmodal-container {
    animation: modalEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

[class*="-form"] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[class*="-form"] h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[class*="-field"] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

[class*="-field"] label {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[class*="-field"] input, 
[class*="-field"] select,
[class*="-field"] textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: all var(--transition-speed);
}

[class*="-field"] textarea {
    min-height: 120px;
    resize: vertical;
}

[class*="-field"] input:focus, 
[class*="-field"] select:focus,
[class*="-field"] textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
}

[class*="-error"] {
    color: var(--error-color);
    font-size: 0.8rem;
    min-height: 1rem;
    display: block;
}

[class*="-checkbox"] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

[class*="-checkbox"] input {
    min-width: 1.2rem;
    height: 1.2rem;
}

[class*="-checkbox"] label {
    font-size: 0.9rem;
}

[class*="-checkbox"] a {
    color: var(--accent-color);
    text-decoration: none;
}

[class*="-checkbox"] a:hover {
    text-decoration: underline;
}

[class*="-submit"] {
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[class*="-submit"]:hover {
    background-color: #f1c40f;
    transform: translateY(-2px);
}

[class*="-submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

[class*="success-overlay"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

[class*="success-overlay"].active {
    display: flex;
    animation: fadeIn 0.5s ease-out;
}

[class*="success-container"] {
    background-color: white;
    padding: 2rem;
    border-radius: var(--modal-radius);
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: var(--modal-shadow);
}

[class*="success-container"] h3 {
    font-family: var(--font-heading);
    color: var(--success-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[class*="success-message"] {
    margin-bottom: 2rem;
    line-height: 1.6;
}

[class*="success-close"] {
    padding: 0.8rem 1.5rem;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-left: auto;
}

[class*="success-close"]:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

@keyframes modalEntry {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1024px) {
    .fc-header-nav {
        padding: 1rem;
    }
    
    .fc-header-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --modal-top-padding: 1rem;
        --modal-bottom-padding: 1rem;
    }
    
    .fc-header-nav {
        flex-direction: column;
        gap: 1rem;
    }

    [class*="modal-container"] {
        padding: 1.5rem;
    }
    
    .fc-header-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .fc-header-actions {
        width: 100%;
        justify-content: center;
    }
    
    [class*="modal-container"] {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    [class*="modal-container"] {
        padding: 1rem;
        margin: 0.5rem;
    }
    .fc-header-topbar {
        padding: 0.5rem 1rem;
    }
    
    .fc-header-responsibility {
        font-size: 0.8rem;
        padding-right: 1.5rem;
    }
    
    .fc-header-logo {
        font-size: 1.2rem;
    }
    
    .fc-header-buyticket, .fc-header-contact {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    [class*="-form"] h2 {
        font-size: 1.3rem;
    }
    
    [class*="-field"] input, 
    [class*="-field"] select,
    [class*="-field"] textarea {
        padding: 0.7rem;
    }
}

@media (max-width: 320px) {
    .fc-header-links {
        flex-direction: column;
        align-items: center;
    }
    
    .fc-header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    [class*="modal-container"] {
        padding: 1rem;
    }
    
    [class*="-form"] h2 {
        font-size: 1.2rem;
    }
}

.fc-header-container {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.fc-header-topbar {
    background-color: var(--accent-color);
    padding: 0.5rem 2rem;
    position: relative;
}

.fc-header-responsibility {
    text-align: center;
    font-size: 0.9rem;
    max-width: var(--section-maxwidth);
    margin: 0 auto;
    position: relative;
    padding-right: 2rem;
}

.fc-header-closebtn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
}

.fc-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--section-maxwidth);
    margin: 0 auto;
    flex-wrap: wrap;
}

.fc-header-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-color);
}

.fc-header-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.fc-header-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.fc-header-links a {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition-speed);
}

.fc-header-links a:hover {
    color: var(--accent-color);
}

.fc-header-actions {
    display: flex;
    gap: 1rem;
}

.fc-header-buyticket {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.fc-header-buyticket:hover {
    background-color: #f1c40f;
    transform: translateY(-2px);
}

.fc-premium-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fc-premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    background-image: url('../fc-img/fc-bg-img-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.fc-premium-content {
    display: flex;
    max-width: var(--section-maxwidth);
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    gap: 3rem;
}

.fc-premium-timerblock {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

.fc-premium-gametitle {
    font-family: var(--font-heading);
    color: var(--premium-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fc-premium-gamedesc {
    margin-bottom: 2rem;
    min-height: 3.5rem;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .fc-premium-gamedesc {
        font-size: 1.5rem;
    }
}

.fc-premium-countdown {
    width: 80%;
    max-width: 540px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.fc-premium-timeunit {
    text-align: center;
    flex: 1;
}

.fc-premium-timevalue {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-accent);
    font-family: var(--font-heading);
}

.fc-premium-timelabel {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.fc-premium-buybutton {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fc-premium-buybutton:hover {
    background-color: #7d3c98;
    transform: translateY(-2px);
}

.fc-premium-features {
    flex: 1;
    color: white;
}

.fc-premium-features h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.fc-premium-subtext {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    min-height: 3rem;
}

.fc-premium-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fc-premium-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--dark-color);
    transition: all var(--transition-speed);
    animation: fadeIn 0.5s ease-out;
}

.fc-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.fc-premium-card i {
    font-size: 2rem;
    color: var(--premium-accent);
    margin-bottom: 1rem;
}

.fc-premium-card p {
    font-weight: 500;
}

.fc-games-section {
    padding: 4rem 2rem;
    background-color: white;
}

.fc-games-content {
    max-width: var(--section-maxwidth);
    margin: 0 auto;
}

.fc-games-title {
    font-family: var(--font-heading);
    color: var(--games-accent);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.fc-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fc-game-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.fc-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.fc-game-card i {
    font-size: 3rem;
    color: var(--games-accent);
    margin-bottom: 1.5rem;
    display: block;
}

.fc-game-card h3 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fc-game-desc {
    margin-bottom: 1.5rem;
    min-height: 4.5rem;
    overflow: hidden;
    position: relative;
}

.fc-game-desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-game-desc.expanded p {
    display: block;
    -webkit-line-clamp: initial;
}

.fc-game-readmore {
    background: none;
    border: none;
    color: var(--games-accent);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    display: block;
}

.fc-game-play {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fc-game-play i {
    padding-top: 25px;
}

.fc-game-play:hover {
    background-color: #138a72;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1024px) {
    .fc-premium-content {
        flex-direction: column;
    }
    
    .fc-games-grid {
        gap: 1.5rem;
    }
    
    .fc-game-card {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .fc-header-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fc-header-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .fc-premium-features h1 {
        font-size: 2.5rem;
    }
    
    .fc-premium-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .fc-header-topbar {
        padding: 0.5rem 1rem;
    }
    
    .fc-header-responsibility {
        font-size: 0.8rem;
        padding-right: 1.5rem;
    }
    
    .fc-premium-content {
        padding: 1rem;
    }
    
    .fc-premium-features h1 {
        font-size: 2rem;
    }
    
    .fc-games-title {
        font-size: 2rem;
    }
    
    .fc-game-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 320px) {
    .fc-premium-timevalue {
        font-size: 2rem;
    }
    
    .fc-premium-gametitle {
        font-size: 1.5rem;
    }
    
    .fc-premium-features h1 {
        font-size: 1.8rem;
    }
    
    .fc-games-title {
        font-size: 1.8rem;
    }
}

.fc-about-section {
    padding: 5rem 2rem;
    background-color: white;
    position: relative;
}

.fc-about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    min-height: 550px;
}

.fc-about-visual {
    flex: 1;
    position: sticky;
    top: 2rem;
    height: 500px;
    align-self: flex-start;
    animation: fadeInLeft 0.8s ease-out;
}

.fc-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.fc-about-textblock {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    top: 3rem;
    align-self: flex-end;
    animation: fadeInRight 0.8s ease-out;
}

.fc-about-textblock i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.fc-about-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.fc-about-text {
    margin-bottom: 2rem;
}

.fc-about-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.fc-about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.fc-about-link:hover {
    color: var(--secondary-color);
}

.fc-getstarted-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.fc-getstarted-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fc-img/fc-bg-img-2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.fc-getstarted-content {
    max-width: var(--section-maxwidth);
    margin: 0 auto;
    position: relative;
}

.fc-getstarted-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fc-getstarted-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.fc-getstarted-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all var(--transition-speed);
    animation: fadeInUp 0.5s ease-out;
}

.fc-getstarted-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.fc-getstarted-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.fc-getstarted-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.fc-getstarted-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 4.5rem;
}

.fc-getstarted-button {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fc-getstarted-button i {
    font-size: 20px;
    padding-top: 25px;
    color: #fff;
}

.fc-getstarted-button:hover {
    background-color: var(--secondary-color);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .fc-about-content {
        gap: 2rem;
    }
    
    .fc-getstarted-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .fc-about-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .fc-about-visual {
        position: static;
        height: 400px;
    }
    
    .fc-about-textblock {
        top: 0;
    }
    
    .fc-getstarted-card {
        flex: 1 1 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .fc-about-section, .fc-getstarted-section {
        padding: 3rem 1rem;
    }
    
    .fc-about-visual {
        height: 300px;
    }
    
    .fc-about-textblock {
        padding: 2rem;
    }
    
    .fc-getstarted-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 320px) {
    .fc-about-title, .fc-getstarted-title {
        font-size: 1.8rem;
    }
    
    .fc-getstarted-card {
        min-width: 100%;
    }
}

.fc-testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.fc-testimonials-content {
    max-width: var(--section-maxwidth);
    margin: 0 auto;
}

.fc-testimonials-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fc-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.fc-testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
}

.fc-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fc-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.fc-testimonial-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.fc-testimonial-author h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.fc-testimonial-date {
    font-size: 0.9rem;
    color: #666;
}

.fc-testimonial-rating {
    margin-left: auto;
    color: var(--accent-color);
}

.fc-testimonial-text {
    line-height: 1.7;
    min-height: 4.5rem;
}

.fc-faq-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.fc-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../fc-img/fc-bg-img-3.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.1;
}

.fc-faq-content {
    max-width: var(--section-maxwidth);
    margin: 0 auto;
}

.fc-faq-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fc-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.fc-faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fc-faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: white;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-speed);
}

.fc-faq-question:hover {
    background: #f9f9f9;
}

.fc-faq-question i {
    transition: transform var(--transition-speed);
}

.fc-faq-question.active i {
    transform: rotate(45deg);
}

.fc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.fc-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

.fc-responsibility-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.fc-responsibility-content {
    max-width: var(--section-maxwidth);
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.fc-responsibility-main {
    flex: 2;
}

.fc-responsibility-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fc-responsibility-text {
    line-height: 1.8;
}

.fc-responsibility-text p {
    margin-bottom: 1.5rem;
}

.fc-responsibility-partners {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    align-self: flex-start;
    position: sticky;
    top: 2rem;
}

.fc-responsibility-partners-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.fc-responsibility-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fc-responsibility-partner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.fc-responsibility-partner:hover {
    transform: scale(1.05);
}

.fc-responsibility-partner img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-speed);
}

.fc-responsibility-partner:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.fc-responsibility-age {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .fc-testimonial-card {
        flex: 1 1 calc(50% - 2rem);
    }
    
    .fc-responsibility-content {
        flex-direction: column;
    }
    
    .fc-responsibility-partners {
        position: static;
    }
}

@media (max-width: 768px) {
    .fc-testimonials-title, .fc-faq-title, .fc-responsibility-title {
        font-size: 2rem;
    }
    
    .fc-testimonial-card {
        flex: 1 1 100%;
    }
    
    .fc-faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .fc-testimonials-section, .fc-faq-section, .fc-responsibility-section {
        padding: 3rem 1rem;
    }
    
    .fc-testimonials-title, .fc-faq-title, .fc-responsibility-title {
        font-size: 1.8rem;
    }
    
    .fc-responsibility-partners-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.fc-footer-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 2rem;
    font-family: var(--font-body);
}

.fc-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fc-footer-link {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed);
}

.fc-footer-link:hover {
    color: var(--accent-color);
}

.fc-footer-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fc-footer-login, .fc-footer-contact {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
}

.fc-footer-login {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.fc-footer-contact {
    background-color: var(--secondary-color);
    color: white;
}

.fc-footer-login:hover, .fc-footer-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.fc-footer-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.8;
}

.fc-footer-copyright {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.fc-cookies-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.fc-cookies-container {
    max-width: 1520px;
    margin: 0 auto;
}

.fc-cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.fc-cookies-text {
    color: white;
    margin: 0;
}

.fc-cookies-learn {
    color: var(--accent-color);
    text-decoration: none;
}

.fc-cookies-accept {
    background-color: var(--success-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: background-color var(--transition-speed);
}

.fc-cookies-accept:hover {
    background-color: var(--accent-color);
}

.fc-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.99);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-age-container {
    background-color: var(--dark-color);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fc-age-content {
    color: white;
}

.fc-age-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.fc-age-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.fc-age-text {
    font-family: var(--font-body);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.fc-age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.fc-age-confirm, .fc-age-decline {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.fc-age-confirm {
    background-color: var(--success-color);
    color: white;
}

.fc-age-decline {
    background-color: var(--error-color);
    color: white;
}

.fc-age-confirm:hover, .fc-age-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.fc-back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 999;
}

.fc-back-top.visible {
    opacity: 1;
    visibility: visible;
}

.fc-back-top:hover {
    background-color: darken(var(--accent-color), 10%);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .fc-cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fc-age-buttons {
        flex-direction: column;
    }
    
    .fc-age-confirm, .fc-age-decline {
        width: 100%;
    }
    
    .fc-age-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .fc-footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .fc-footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .fc-footer-login, .fc-footer-contact {
        width: 100%;
        justify-content: center;
    }
    
    .fc-back-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }
}

.fcpg-privacy-main {
    max-width: 1520px;
    margin: 0 auto;
    padding: 2rem;
}

.fcpg-privacy-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.fcpg-privacy-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fcpg-privacy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fcpg-privacy-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
}

.fcpg-privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fcpg-privacy-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fcpg-privacy-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fcpg-privacy-item p {
    line-height: 1.8;
    min-height: 4.5rem;
}

@media (max-width: 1024px) {
    .fcpg-privacy-item {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .fcpg-privacy-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .fcpg-privacy-item {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
        max-width: 470px;
    }
    
    .fcpg-privacy-main {
        padding: 1rem;
    }
}

.fcpg-terms-main {
    max-width: 1520px;
    margin: 0 auto;
    padding: 2rem;
}

.fcpg-terms-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.fcpg-terms-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fcpg-terms-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fcpg-terms-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.fcpg-terms-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.fcpg-terms-item:hover::before {
    width: 10px;
}

.fcpg-terms-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.fcpg-terms-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fcpg-terms-item p {
    line-height: 1.8;
    min-height: 4.5rem;
}

@media (max-width: 1024px) {
    .fcpg-terms-item {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .fcpg-terms-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .fcpg-terms-item {
        min-width: 0;
        width: 100%;
        max-width: 470px;
        flex: 1 1 100%;
    }
    
    .fcpg-terms-main {
        padding: 1rem;
    }
}

.fcpg-cookies-main {
    max-width: 1520px;
    margin: 0 auto;
    padding: 2rem;
}

.fcpg-cookies-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.fcpg-cookies-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fcpg-cookies-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fcpg-cookies-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
    border-left: 5px solid var(--accent-color);
}

.fcpg-cookies-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.fcpg-cookies-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.fcpg-cookies-item h3::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.fcpg-cookies-item p {
    line-height: 1.8;
    min-height: 4.5rem;
}

@media (max-width: 1024px) {
    .fcpg-cookies-item {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .fcpg-cookies-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .fcpg-cookies-item {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
        max-width: 470px;
    }
    
    .fcpg-cookies-main {
        padding: 1rem;
    }
}

.fcpg-responsible-main {
    max-width: 1520px;
    margin: 0 auto;
    padding: 2rem;
}

.fcpg-responsible-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.fcpg-responsible-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fcpg-responsible-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.fcpg-responsible-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
    text-align: center;
}

.fcpg-responsible-item:hover {
    transform: rotate(1deg) scale(1.03);
}

.fcpg-responsible-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

.fcpg-responsible-item:hover i {
    transform: rotate(15deg) scale(1.2);
}

.fcpg-responsible-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fcpg-responsible-item p {
    line-height: 1.8;
    min-height: 4.5rem;
}

.fcpg-responsible-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.fcpg-responsible-item a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .fcpg-responsible-item {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .fcpg-responsible-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .fcpg-responsible-item {
        min-width: 0;
        width: 100%;        
        max-width: 470px;
        flex: 1 1 100%;
    }
    
    .fcpg-responsible-main {
        padding: 1rem;
    }
}

.fcpg-about-main {
    max-width: 1520px;
    margin: 0 auto;
    padding: 2rem;
}

.fcpg-about-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.fcpg-about-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.fcpg-about-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fcpg-about-text {
    max-width: 800px;
    margin: 0 auto;
}

.fcpg-about-text p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.fcpg-about-button {
    text-align: center;
    margin-top: 3rem;
}

.fcpg-about-cta {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.fcpg-about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    background-color: darken(var(--accent-color), 10%);
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .fcpg-about-title {
        font-size: 2.2rem;
    }
    
    .fcpg-about-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .fcpg-about-main {
        padding: 1rem;
    }
    
    .fcpg-about-content {
        padding: 1.5rem;
    }
    
    .fcpg-about-text p {
        font-size: 1rem;
    }
    
    .fcpg-about-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}