/* ===== ФИДЖИТАЛ ЦЕНТР ===== */

/* Базовые */
.fc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.fc-section {
    padding: 90px 0;
}
.fc-section-dark {
    background: #000000;
}
.fc-section-gray {
    background: #0a0a0a;
}

/* ===== ЗАГОЛОВКИ (только для секций, НЕ для главного экрана) ===== */
.fc-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}
.fc-title .blue {
    color: #0097E6;
}
.fc-title .orange {
    color: #FF7300;
}
.fc-subtitle {
    font-size: 20px;
    text-align: center;
    max-width: 700px;
    margin: -30px auto 60px;
    color: rgba(255,255,255,0.8);
}

/* ===== ГЛАВНЫЙ ЭКРАН (ОТДЕЛЬНЫЕ СТИЛИ) ===== */
.fc-cover h1 {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}
.fc-cover h1 .orange {
    color: #FF7300;
}
.fc-cover h1 .blue {
    color: #0097E6;
}
.fc-cover p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
}
.fc-cover .fc-btn {
    padding: 18px 48px;
    font-size: 18px;
}
.fc-cover .fc-btn-orange {
    background: #FF7300;
    margin-left: 16px;
}
.fc-cover .fc-btn-orange:hover {
    background: #cc5c00;
}
.fc-cover-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.fc-cover-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}
.fc-cover-badge .icon {
    font-size: 20px;
}
.fc-cover-badge .blue {
    color: #0097E6;
}
.fc-cover-badge .orange {
    color: #FF7300;
}

/* ===== ШАПКА ===== */
.fc-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(0, 151, 230, 0.15);
}
.fc-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fc-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.fc-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.fc-nav a:hover {
    color: #0097E6;
}
.fc-btn-header {
    background: #0097E6;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}
.fc-btn-header:hover {
    background: #0077b3;
}

/* ===== ЛОГОТИП ===== */
.fc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.fc-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0097E6, #FF7300);
    border-radius: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 151, 230, 0.4);
}
.fc-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}
.fc-logo-text .blue {
    color: #0097E6;
}
.fc-logo-text .orange {
    color: #FF7300;
}

/* ===== КНОПКИ ===== */
.fc-btn-center {
    text-align: center;
    margin-top: 50px;
}
.fc-btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fc-btn-service {
    background: #0097E6;
    border-color: #0097E6;
}
.fc-btn-service:hover {
    background: #FF7300;
    border-color: #FF7300;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 115, 0, 0.4);
}

/* ===== УСЛУГИ ===== */
.fc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.fc-service-card {
    background: #111111;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.fc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 151, 230, 0.2);
}
.fc-service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.fc-service-card .body {
    padding: 24px;
}
.fc-service-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
}
.fc-service-card h3 .orange {
    color: #FF7300;
}
.fc-service-card h3 .blue {
    color: #0097E6;
}
.fc-service-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ===== МЕРОПРИЯТИЯ ===== */
.fc-event-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}
.fc-event-item.reverse {
    flex-direction: row-reverse;
}
.fc-event-item .image {
    flex: 1;
}
.fc-event-item .image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid rgba(0, 151, 230, 0.2);
}
.fc-event-item .text {
    flex: 1;
}
.fc-event-item .text h3 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}
.fc-event-item .text h3 .blue {
    color: #0097E6;
}
.fc-event-item .text h3 .orange {
    color: #FF7300;
}
.fc-event-item .text p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ===== ИГРЫ ===== */
.fc-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fc-game-card {
    background: #111111;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 115, 0, 0.1);
}
.fc-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 115, 0, 0.15);
}
.fc-game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.fc-game-card .body {
    padding: 25px;
    background: #000000;
}
.fc-game-card .tag {
    color: #FF7300;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.fc-game-card h4 {
    font-size: 28px;
    color: #ffffff;
    margin: 8px 0 12px;
}
.fc-game-card p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* ===== ПРОГРАММА ЛОЯЛЬНОСТИ ===== */
.fc-loyalty {
    display: flex;
    align-items: center;
    gap: 60px;
}
.fc-loyalty .text {
    flex: 1;
}
.fc-loyalty .text ul {
    list-style: none;
    padding: 0;
}
.fc-loyalty .text li {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    line-height: 1.5;
    padding-left: 30px;
    position: relative;
}
.fc-loyalty .text li::before {
    content: "▸";
    color: #0097E6;
    position: absolute;
    left: 0;
    font-size: 24px;
}
.fc-loyalty .text li strong {
    color: #ffffff;
}
.fc-loyalty .image {
    flex: 1;
}
.fc-loyalty .image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(0, 151, 230, 0.2);
}

/* ===== ВИДЕООТЗЫВЫ ===== */
.fc-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.fc-video-placeholder {
    background: #111111;
    border-radius: 20px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    border: 2px dashed rgba(0, 151, 230, 0.3);
}

/* ===== ОТЗЫВЫ ===== */
.fc-reviews-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.fc-reviews-scroll::-webkit-scrollbar {
    height: 6px;
}
.fc-reviews-scroll::-webkit-scrollbar-thumb {
    background: #0097E6;
    border-radius: 10px;
}
.fc-review-card {
    min-width: 360px;
    background: #111111;
    border-radius: 20px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 115, 0, 0.1);
}

/* ===== СОЦСЕТИ ===== */
.fc-social-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}
.fc-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    transition: transform 0.3s;
    text-decoration: none;
}
.fc-social-btn:hover {
    transform: scale(1.05);
}
.fc-social-btn.telegram {
    background: #0097E6;
}
.fc-social-btn.youtube {
    background: #FF7300;
}
.fc-social-btn svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

/* ===== FAQ ===== */
.fc-faq-item {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
}
.fc-faq-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fc-faq-q {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.fc-faq-q:hover {
    color: #0097E6;
}
.fc-faq-q .icon {
    font-size: 30px;
    transition: transform 0.3s;
    color: #FF7300;
}
.fc-faq-q.active .icon {
    transform: rotate(45deg);
}
.fc-faq-a {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-top: 16px;
    line-height: 1.6;
    display: none;
}
.fc-faq-a.open {
    display: block;
}

/* ===== ПОДВАЛ ===== */
.fc-footer {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(0, 151, 230, 0.1);
}
.fc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.fc-footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.fc-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fc-footer ul li {
    margin-bottom: 10px;
}
.fc-footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.fc-footer ul li a:hover {
    color: #0097E6;
}
.fc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.fc-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s;
}
.fc-footer-social a:hover {
    background: #0097E6;
}
.fc-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.fc-footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0097E6, #FF7300);
    border-radius: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .fc-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fc-games-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fc-event-item {
        flex-direction: column !important;
    }
    .fc-loyalty {
        flex-direction: column;
    }
    .fc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fc-video-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .fc-services-grid,
    .fc-games-grid,
    .fc-video-grid {
        grid-template-columns: 1fr;
    }
    .fc-footer-grid {
        grid-template-columns: 1fr;
    }
    .fc-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .fc-event-item .text h3 {
        font-size: 28px;
    }
    .fc-faq-q {
        font-size: 22px;
    }
    .fc-section {
        padding: 50px 0;
    }
    .fc-service-card img {
        height: 200px;
    }
    .fc-event-item .image img {
        height: 240px;
    }
    .fc-review-card {
        min-width: 280px;
    }
    .fc-social-btn {
        width: 60px;
        height: 60px;
    }
    .fc-social-btn svg {
        width: 30px;
        height: 30px;
    }
    .fc-cover h1 {
        font-size: 36px;
    }
    .fc-cover p {
        font-size: 16px;
        line-height: 1.6;
    }
    .fc-cover .fc-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
    .fc-cover .fc-btn-orange {
        margin-left: 0;
        margin-top: 12px;
    }
    .fc-cover-badges {
        gap: 16px;
    }
    .fc-cover-badge {
        font-size: 12px;
    }
    .fc-nav {
        display: none;
    }
    .fc-logo-text {
        font-size: 18px;
    }
    .fc-logo-icon {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .fc-title {
        font-size: 28px;
    }
    .fc-subtitle {
        font-size: 16px;
    }
    .fc-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .fc-loyalty .text li {
        font-size: 16px;
    }
    .fc-cover h1 {
        font-size: 28px;
    }
    .fc-cover p {
        font-size: 14px;
    }
    .fc-cover .fc-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .fc-logo-text {
        font-size: 15px;
    }
    .fc-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}