:root {
            --bg: #080b10;
            --surface: #10151d;
            --surface2: #171d27;
            --text: #fff;
            --muted: #b9c1cc;
            --accent: #FF4500;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            font-family: Inter, sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            background: rgba(8, 11, 16, .65);
            backdrop-filter: blur(12px)
        }

        .nav {
            max-width: 1400px;
            margin: auto;
            padding: 18px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-text strong {
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #fff;
        }

        .logo-text span {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 3px;
            color: var(--muted);
            text-transform: uppercase;
        }

        .nav a {
            color: white;
            text-decoration: none;
            margin-left: 24px
        }

        .hero {
            height: 100vh;
            position: relative
        }

        .hero iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 177.77777778vh;
            height: 56.25vw;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .hero {
            overflow: hidden;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .75))
        }

        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 1400px;
            margin: auto;
            padding: 0 40px
        }

        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, .12);
            padding: 10px 18px;
            border-radius: 999px;
            width: max-content
        }

        .hero h1 {
            font-size: 84px;
            line-height: 1;
            font-weight: 800;
            max-width: 900px;
            margin: 24px 0
        }

        .hero p {
            font-size: 20px;
            color: var(--muted);
            max-width: 700px
        }

        .btns {
            margin-top: 30px;
            display: flex;
            gap: 16px
        }

        .btn {
            padding: 16px 30px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700
        }

        .primary {
            background: var(--accent);
            color: white
        }

        .secondary {
            border: 1px solid rgba(255, 255, 255, .2);
            color: white
        }

        .section {
            max-width: 1400px;
            margin: auto;
            padding: 100px 40px
        }

        .title {
            font-size: 54px;
            margin-bottom: 18px
        }

        .sub {
            color: var(--muted);
            margin-bottom: 40px
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat {
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, .05);
            padding: 40px 32px;
            border-radius: 24px;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: 0.3s;
        }

        .stat:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 69, 0, 0.3);
        }

        .stat-icon {
            font-size: 28px;
            margin-bottom: 20px;
            display: block;
        }

        .stat h3 {
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #ffaa80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat p {
            color: var(--muted);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .stat-glow {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 100px;
            height: 100px;
            background: rgba(255, 69, 0, 0.08);
            border-radius: 50%;
        }

        .community-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .community-header-left {
            flex: 1;
        }

        .community-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 14px;
        }

        .community-header .title {
            margin-bottom: 14px;
        }

        .community-header .sub {
            margin-bottom: 0;
            max-width: 500px;
        }

        .community-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-self: flex-end;
        }

        .feature-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.07);
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
        }

        .feature-pill span {
            font-size: 16px;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px
        }

        .card {
            border-radius: 24px;
            overflow: hidden;
            transition: .3s
        }

        .card:hover {
            transform: translateY(-8px)
        }

        .card img {
            width: 100%;
            height: 260px;
            object-fit: cover
        }

        .body {
            padding: 24px
        }

        .price {
            font-size: 28px;
            font-weight: 800;
            color: #ffaa80;
        }

        .events {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .event-card {
            display: flex;
            align-items: center;
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 24px 32px;
            border-radius: 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .event-card:hover {
            transform: translateX(8px);
            background: var(--surface2);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .event-card:hover::before {
            transform: scaleY(1);
        }

        .event-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 69, 0, 0.1);
            color: var(--accent);
            min-width: 80px;
            height: 80px;
            border-radius: 16px;
            margin-right: 24px;
        }

        .event-date .day {
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
        }

        .event-date .month {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .event-info {
            flex: 1;
        }

        .event-info h3 {
            font-size: 24px;
            margin-bottom: 8px;
            color: #fff;
        }

        .event-info p {
            color: var(--muted);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .event-btn {
            padding: 12px 24px;
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .event-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .gallery img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 22px
        }

        .cta {
            background: linear-gradient(135deg, #3d1000 0%, #c43200 50%, #ff6a00 100%);
            padding: 70px 80px;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .cta::after {
            content: '';
            position: absolute;
            bottom: -120px;
            right: 200px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
        }

        .cta-left {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .cta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 16px;
            border-radius: 999px;
            margin-bottom: 24px;
        }

        .cta-left h2 {
            font-size: 48px;
            line-height: 1.1;
            margin-bottom: 18px;
            color: #fff;
        }

        .cta-left p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 480px;
        }

        .cta-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            background: #fff;
            color: #c43200;
            padding: 16px 32px;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
        }

        .cta-btn-primary:hover {
            background: #ffe5d9;
        }

        .cta-btn-secondary {
            background: transparent;
            color: #fff;
            padding: 16px 32px;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: 0.3s;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .cta-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 1;
            min-width: 220px;
        }

        .cta-stat {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 24px 28px;
            backdrop-filter: blur(4px);
        }

        .cta-stat span {
            display: block;
            font-size: 36px;
            font-weight: 800;
            color: #fff;
        }

        .cta-stat small {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-top: 4px;
            display: block;
        }

        @media (max-width: 992px) {
            .cta {
                flex-direction: column;
                padding: 50px 40px;
                text-align: center;
            }

            .cta-left p {
                max-width: 100%;
            }

            .cta-buttons {
                justify-content: center;
            }

            .cta-right {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                min-width: unset;
                width: 100%;
            }

            .cta-stat {
                flex: 1;
                min-width: 130px;
                text-align: center;
            }

            .cta-left h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .cta {
                padding: 40px 24px;
            }

            .cta-left h2 {
                font-size: 30px;
            }
        }

        .footer-professional {
            background: var(--surface2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 80px 40px 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1400px;
            margin: auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 24px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-col p {
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 300px;
        }

        .footer-col a {
            display: block;
            color: var(--muted);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-socials a {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            text-align: center;
            color: var(--muted);
            font-size: 14px;
        }

        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .footer-professional {
                padding: 60px 20px 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-col p {
                max-width: 100%;
            }
        }

        /* Tablet */
        @media (max-width: 992px) {

            .hero h1 {
                font-size: 60px;
            }

            .title {
                font-size: 42px;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .products {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {

            header {
                background: rgba(8, 11, 16, .9);
            }

            .nav {
                padding: 16px 20px;
                flex-direction: column;
                gap: 15px;
            }

            .nav>div:last-child {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
            }

            .nav a {
                margin-left: 0;
                font-size: 14px;
            }

            .logo {
                font-size: 22px;
            }

            .hero {
                height: 100svh;
            }

            .hero-content {
                padding: 0 24px;
                text-align: center;
                align-items: center;
            }

            .badge {
                font-size: 12px;
                padding: 8px 14px;
            }

            .hero h1 {
                font-size: 42px;
                line-height: 1.1;
                margin: 18px 0;
            }

            .hero p {
                font-size: 16px;
                max-width: 100%;
            }

            .btns {
                width: 100%;
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .section {
                padding: 70px 20px;
            }

            .title {
                font-size: 34px;
            }

            .sub {
                font-size: 15px;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .stat {
                padding: 30px;
            }

            .stat h3 {
                font-size: 32px;
            }

            .products {
                grid-template-columns: 1fr;
            }

            .card img {
                height: 240px;
            }

            .gallery {
                grid-template-columns: 1fr;
            }

            .gallery img {
                height: 240px;
            }

            .event-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 24px;
                gap: 20px;
            }

            .event-card:hover {
                transform: translateY(-4px);
            }

            .event-card::before {
                width: 100%;
                height: 4px;
                bottom: auto;
                left: 0;
                transform: scaleX(0);
            }

            .event-card:hover::before {
                transform: scaleX(1);
            }

            .event-date {
                margin-right: 0;
                flex-direction: row;
                gap: 8px;
                width: max-content;
                height: auto;
                padding: 8px 16px;
                border-radius: 12px;
            }

            .event-date .day {
                font-size: 18px;
            }

            .event-date .month {
                margin-top: 0;
            }

            .event-info h3 {
                font-size: 20px;
            }

            .event-btn {
                width: 100%;
                text-align: center;
            }

            .cta {
                padding: 40px 24px;
            }

            .cta h2 {
                font-size: 32px !important;
            }

        }

        /* Small Mobile */
        @media (max-width: 480px) {

            .hero h1 {
                font-size: 34px;
            }

            .hero p {
                font-size: 15px;
            }

            .title {
                font-size: 28px;
            }

            .price {
                font-size: 24px;
            }

            .stat h3 {
                font-size: 28px;
            }

            .card img {
                height: 220px;
            }

            .gallery img {
                height: 220px;
            }

        }
/* Supporting Pages Specific Styles */
main {
    flex: 1;
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, #ffaa80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-block {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 40px;
    border-radius: 24px;
    line-height: 1.7;
    color: var(--muted);
}

.content-block h2 {
    color: #fff;
    font-size: 24px;
    margin: 30px 0 15px;
}

.content-block h3 {
    color: #fff;
    font-size: 20px;
    margin: 20px 0 10px;
}

.content-block p {
    margin-bottom: 16px;
}

.content-block ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.content-block li {
    margin-bottom: 8px;
}

.content-block a {
    color: var(--accent);
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

.faq-item {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border-radius: 12px;
    background: var(--surface2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background: #e03d00;
}

@media (max-width: 768px) {
    .content-block {
        padding: 24px;
    }
}
