/* F7 CASINO - Main Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A0B0D;
    --accent-color: #E8FF01;
    --secondary-color: #47495B;
    --white: #ffffff;
    --text-light: #f5f5f5;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

h2 {
    font-size: 2rem;
    color: var(--white);
}

h3 {
    font-size: 1.5rem;
    color: var(--white);
}

h4 {
    font-size: 1.2rem;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--white);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--secondary-color);
}

header .container {
    max-width: unset;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 40px;
    width: auto;
}

.header__nav {
    display: none;
}

.header__nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 1rem 0;
    border-top: 1px solid var(--secondary-color);
}

.header__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0 1rem;
}

.header__menu-item {
    margin-bottom: 0;
    text-align: center;
}

.header__menu-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
    display: block;
}

.header__menu-link:hover,
.header__menu-link.active {
    background: var(--accent-color);
    color: var(--primary-color);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__burger {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
    font-size: 0.9rem;
}

.btn--primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn--primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn--secondary:hover {
    background: var(--secondary-color);
}

.btn--icon {
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    max-height: 1200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 13, 0.7);
    z-index: -1;
}

.hero__content {
    max-width: 600px;
    text-align: center;
    z-index: 1;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Sections */
.section {
    padding: 4rem 0;
    position: relative;
}

.section--alt {
    background: rgba(71, 73, 91, 0.1);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    background: rgba(71, 73, 91, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(232, 255, 1, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 255, 1, 0.3);
    box-shadow: 0 10px 30px rgba(232, 255, 1, 0.1);
}

.card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card__text {
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* VIP Styles */
.vip-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.vip-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.vip-table {
    background: rgba(0, 0, 0, 0.3);
}

.vip-bronze {
    background: rgba(205, 127, 50, 0.1);
}

.vip-silver {
    background: rgba(192, 192, 192, 0.1);
}

.vip-gold {
    background: rgba(255, 215, 0, 0.1);
}

.vip-platinum {
    background: rgba(229, 228, 226, 0.1);
}

.vip-diamond {
    background: rgba(185, 242, 255, 0.1);
}

.bronze {
    color: #cd7f32;
}

.silver {
    color: #c0c0c0;
}

.gold {
    color: #ffd700;
}

.platinum {
    color: #e5e4e2;
}

.diamond {
    color: #b9f2ff;
}

.vip-stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(71, 73, 91, 0.2);
    border-radius: 12px;
}

.vip-stat {
    text-align: center;
}

.vip-stat__number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.vip-stat__label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.slot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(71, 73, 91, 0.2);
    transition: var(--transition);
}

.slot-item:hover {
    transform: scale(1.05);
}

.slot-item__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slot-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
    text-align: center;
}

.slot-item:hover .slot-item__overlay {
    opacity: 1;
}

.slot-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.slot-item__info {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.slot-item__btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(71, 73, 91, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(232, 255, 1, 0.1);
}

.table th {
    background: rgba(232, 255, 1, 0.1);
    color: var(--white);
    font-weight: 600;
}

.table td {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    border-top: 1px solid var(--secondary-color);
    padding: 2rem 0 1rem;
}

.footer__content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer__text {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer__payments {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer__payment-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.7;
}

.footer__bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--secondary-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) {


    .hero__title {
        font-size: 3rem;
    }

    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .slot-item__image {
        height: 150px;
    }

    .vip-stats {
        flex-direction: row;
    }
}

/* Laptop (1024px - 1280px) */
@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.5rem;
    }

    .cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .footer__content {
        text-align: left;
    }

    .footer__payments {
        justify-content: flex-start;
    }
}

/* Desktop (1280px+) */
@media (min-width: 1280px) {
    .container {
        max-width: 1400px;
    }

    .hero__title {
        font-size: 4rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .section {
        padding: 6rem 0;
    }

    .cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .vip-stats {
        justify-content: space-between;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Disclaimer */
.disclaimer {
    background: rgba(232, 255, 1, 0.1);
    border: 1px solid rgba(232, 255, 1, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer strong {
    color: var(--accent-color);
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

ol li {
    margin-bottom: 0.5rem;
}

@media (min-width:1330px) {
    .header__nav {
        display: block;
        position: static;
        background: none;
        padding: 0;
        border: none;
    }

    .header__menu {
        flex-direction: row;
        gap: 2rem;
        padding: 0;
    }

    .header__menu-item {
        text-align: left;
    }

    .header__burger {
        display: none;
    }


}

section .btn--secondary {
    border-color: var(--white) !important;
}

section .btn--secondary:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
}

/* Additional Responsive Fixes */
@media (max-width: 767px) {
    .vip-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .table-responsive {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
    }

    .slot-item__image {
        height: 150px;
    }

    .slot-item__title {
        font-size: 0.9rem;
    }

    .slot-item__info {
        font-size: 0.7rem;
    }
} 

.btn--icon span {
    display: none;
}

@media (min-width:420px) {
    .btn--icon i {
        display: none;
    }

    .btn--icon span {
        display: inline;
    }

    .btn--icon {
        padding: 0.75rem 1.5rem;
        width: auto;
        height: auto;
        border-radius: 34px;
    }

    .btn--icon span {
        font-style: italic;
    }
}

@media (max-width:500px) {
    .header__logo {
        height: 25px;
    }
}
