/* Base styles with orange theme */
:root {
    --primary: #ff8a00;
    --primary-light: rgba(255, 138, 0, 0.2);
    --dark: #1e1e1e;
    --dark-light: #333333;
    --light: #f8f8f8;
    --white: #ffffff;
    --gray: #999999;
    --gradient: linear-gradient(135deg, #ff8a00, #ff5e62);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img, svg {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.5px;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Header Styles */
header {
    background-color: rgba(30, 30, 30, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 138, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 101;
}

.logo-svg {
    height: 40px;
    width: 180px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 101;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--dark), #2a2a2a);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--dark), transparent);
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.3));
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 138, 0, 0.4);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #1a1a1a;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--dark);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 138, 0, 0.1);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.about-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    padding: 1.5rem;
    background-color: #252525;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: #2a2a2a;
    transform: translateX(5px);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.features-visual {
    max-width: 800px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.features-svg {
    width: 100%;
    height: auto;
}

/* Access Section */
.access {
    padding: 100px 0;
    background: linear-gradient(to bottom right, #1e1e1e, #282828);
    position: relative;
    overflow: hidden;
}

.access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.access-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: var(--transition);
}

.benefit:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefit span {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #171717;
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-svg {
    height: 40px;
    width: auto;
}

.footer-menu ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-favicon {
    display: flex;
    align-items: center;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .cta-group {
        align-items: center;
    }

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

    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu ul {
        justify-content: center;
    }
}

/* Animation for mobile menu toggle */
.menu-button.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-button.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-button.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dark mode optimization */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--dark);
        color: var(--light);
    }
}
