:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #FFD23F;
    --dark-bg: #0A0E27;
    --light-bg: #1A1F3A;
    --text-light: #FFFFFF;
    --text-gray: #B0B8C4;
    --text-red: #fb04a9;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-2: linear-gradient(135deg, #004E89 0%, #0066CC 100%);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    min-height: 70px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 20px;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    font-family: 'Orbitron', sans-serif;
    flex-shrink: 0;
    z-index: 1001;
    min-width: 140px;
    margin-right: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    letter-spacing: 2px;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.6rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-top: -3px;
    line-height: 1;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.3rem;
    white-space: nowrap;
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
    padding: 8px;
    background: transparent;
    border: none;
    outline: none;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0A0E27 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
    letter-spacing: 5px;
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 210, 63, 0.8);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
}

.racing-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 107, 53, 0.1) 2px,
            rgba(255, 107, 53, 0.1) 4px
        );
    animation: moveLines 20s linear infinite;
}

@keyframes moveLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Content Preview */
.content-preview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.preview-content {
    background-color: black;
    padding: 2rem;
}

.preview-content h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.preview-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.preview-content h3 a:hover {
    color: var(--accent-color);
}

.preview-content p {
    color: var(--text-red);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--text-gray);
}

/* Page Content Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--light-bg);
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.content-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
}

.content-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.content-section img {
    width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

table th {
    background: var(--gradient-1);
    color: var(--text-light);
    padding: 1rem;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-gray);
}

table tr:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
}

/* Responsive - Large screens */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 0.75rem 15px;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }
}

/* Responsive - Medium screens */
@media (max-width: 1024px) {
    .navbar .container {
        gap: 0.75rem;
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.2rem;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .nav-brand {
        min-width: 130px;
    }
}

/* Responsive - Tablet and Mobile */
@media (max-width: 968px) {
    .navbar {
        min-height: 65px;
    }

    .navbar .container {
        padding: 0.75rem 20px;
        gap: 1rem;
    }

    .nav-brand {
        min-width: 120px;
        margin-right: 0;
    }

    .logo-text {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
    }

    .logo-subtitle {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        padding: 1.5rem 0;
        border-top: 2px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        margin: 0;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
        display: block;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        width: 100%;
        text-align: center;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 107, 53, 0.15);
        color: var(--primary-color);
        border-bottom-color: rgba(255, 107, 53, 0.3);
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-brand {
        order: 1;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .navbar {
        min-height: 60px;
    }

    .navbar .container {
        padding: 0.65rem 15px;
    }

    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.48rem;
        letter-spacing: 1px;
    }

    .nav-brand {
        min-width: 110px;
    }

    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 1rem 0;
    }

    .nav-menu a {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-header {
        margin-top: 60px;
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .navbar {
        min-height: 55px;
    }

    .navbar .container {
        padding: 0.5rem 15px;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .logo-subtitle {
        font-size: 0.42rem;
        letter-spacing: 1px;
    }

    .nav-brand {
        min-width: 100px;
    }

    .nav-menu {
        top: 55px;
        max-height: calc(100vh - 55px);
        padding: 0.75rem 0;
    }

    .nav-menu a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .page-header {
        margin-top: 55px;
        padding: 5rem 0 2.5rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

