/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gta-gold: #ffd700;
    --gta-gold-light: #ffdf4d;
    --gta-gold-dark: #b8860b;
    --gta-dark: #0a0a0a;
    --gta-gray: #1f1f1f;
    --gta-light: #e6e6e6;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gta-light);
    background-color: var(--gta-dark);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
}

/* Header and Navigation */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 0.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gta-gold);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    background-color: var(--gta-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 60px;
}

.logo h1 {
    color: var(--gta-gold);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    line-height: 1;
    margin: 0;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gta-gold), transparent);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--gta-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gta-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gta-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--gta-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.25rem;
    margin: 0;
    height: 40px;
    width: 40px;
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active i {
    transform: rotate(90deg);
}

.mobile-menu-btn:hover {
    color: var(--gta-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5)), url('../img/mobster.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-content {
    color: var(--gta-light);
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: var(--gta-gold);
    position: relative;
    display: inline-block;
}


.hero-content h1::before {
    left: -40px;
}

.hero-content h1::after {
    right: -40px;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--gta-gold);
    color: var(--gta-dark);
    text-decoration: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gta-gold);
    font-family: 'Orbitron', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--gta-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

/* Features Section */
.features {
    padding: 4rem 1rem;
    background-color: var(--gta-gray);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/mafia.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gta-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}



.features h2::before {
    left: -70px;
}

.features h2::after {
    right: -70px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(31, 31, 31, 0.9);
    padding: 2rem;
    border: 1px solid var(--gta-gold);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gta-gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--gta-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: var(--gta-dark);
    color: var(--gta-light);
    padding: 3rem 1rem 1rem;
    border-top: 2px solid var(--gta-gold);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gta-gold), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--gta-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gta-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gta-gold);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--gta-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

/* Media Queries */
@media (min-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav-container {
        max-width: 1200px;
        padding: 0 1rem;
        height: 80px;
    }

    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
    }

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

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 4rem 1rem;
    background-color: var(--gta-dark);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/franklin.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gta-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery h2::before {
    left: -70px;
}

.gallery h2::after {
    right: -70px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gta-gold);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.7),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay h3 {
    color: var(--gta-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay p {
    color: var(--gta-light);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        max-width: 100%;
    }

    .gallery-item {
        height: 250px;
        width: 100%;
        margin: 0;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    background-color: var(--gta-dark);
}

.divider-line {
    height: 2px;
    flex-grow: 1;
    max-width: 200px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gta-gold),
        transparent
    );
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gta-gold-light),
        transparent
    );
    opacity: 0.5;
    animation: glow 2s ease-in-out infinite;
}

.divider-icon {
    width: 40px;
    height: 40px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gta-gold);
    font-size: 1.2rem;
    position: relative;
}

.divider-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gta-gold);
    transform: rotate(45deg);
    animation: rotate 10s linear infinite;
}

.divider-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gta-gold);
    transform: rotate(-45deg);
    animation: rotate 10s linear infinite reverse;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .divider-line {
        max-width: 100px;
    }
    
    .divider-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 80%;
    height: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 2px solid var(--gta-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--gta-gold);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--gta-gold-light);
    transform: scale(1.1);
}

.lightbox-caption {
    display: none;
}

/* Media Queries for Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        width: 90%;
        height: 70%;
    }
    
    .lightbox-close {
        top: -35px;
        right: 0;
        font-size: 2rem;
    }
}

/* Add cursor pointer to gallery items */
.gallery-item {
    cursor: pointer;
}

/* Demo Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.dashboard-title {
    text-align: center;
    color: var(--gta-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.dashboard-title::before {
    left: -70px;
}

.dashboard-title::after {
    right: -70px;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.demo-card {
    background: rgba(31, 31, 31, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--gta-gold);
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    background: rgba(31, 31, 31, 0.95);
}

.demo-card:hover::before {
    transform: translateX(100%);
}

.demo-card i {
    font-size: 3rem;
    color: var(--gta-gold);
    margin-bottom: 1rem;
}

.demo-card h3 {
    color: var(--gta-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-card p {
    color: var(--gta-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
}

/* Mobile Warning Popup */
.mobile-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.mobile-warning.active {
    display: flex;
}

.mobile-warning-content {
    background: var(--gta-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 85%;
    width: 320px;
    border: 2px solid var(--gta-gold);
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
    margin: 1rem;
}

.mobile-warning-content i {
    font-size: 2.5rem;
    color: var(--gta-gold);
    margin-bottom: 0.8rem;
}

.mobile-warning-content h3 {
    color: var(--gta-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-warning-content p {
    color: var(--gta-light);
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

.mobile-warning-close {
    background: var(--gta-gold);
    color: var(--gta-dark);
    border: none;
    padding: 0.7rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gta-gold);
    width: 100%;
    max-width: 200px;
}

.mobile-warning-close:hover {
    background: transparent;
    color: var(--gta-gold);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 2px solid var(--gta-gold);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin: 0 1rem;
    }

    .hero-content h1::before,
    .hero-content h1::after {
        width: 20px;
    }

    .hero-content h1::before {
        left: -30px;
    }

    .hero-content h1::after {
        right: -30px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .header {
        padding: 0.5rem;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        padding: 0.5rem;
        margin-right: 0;
    }
}

/* Demo Page Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/mobster.png');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-top: 60px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    color: var(--gta-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gta-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.demo-card {
    background: rgba(31, 31, 31, 0.9);
    border: 2px solid var(--gta-gold);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.demo-card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gta-gold);
    margin-bottom: 1rem;
}

.card-content h3 {
    color: var(--gta-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--gta-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.demo-btn {
    background-color: var(--gta-gold);
    color: var(--gta-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 120px;
    height: 40px;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.demo-btn:hover {
    background-color: var(--gta-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Demo Page Styles */
.demo-content {
    background: rgba(31, 31, 31, 0.9);
    border: 2px solid var(--gta-gold);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.demo-iframe-container {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--gta-dark);
}

.demo-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: var(--gta-dark);
}

@media (max-width: 768px) {
    .demo-content {
        padding: 1rem;
        margin: 1rem 0;
    }

    .demo-iframe-container {
        height: 60vh;
    }
}

/* Video Section Styles */
.videos {
    padding: 4rem 1rem;
    background-color: var(--gta-dark);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/franklin.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.videos h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gta-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.videos h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -70px;
    width: 50px;
    height: 2px;
    background: var(--gta-gold);
}

.videos h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -70px;
    width: 50px;
    height: 2px;
    background: var(--gta-gold);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
}

.video-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gta-gold);
    background: rgba(31, 31, 31, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.video-container {
    width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
    background: rgba(31, 31, 31, 0.95);
}

.video-info h3 {
    color: var(--gta-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-info p {
    color: var(--gta-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .videos {
        padding: 4rem 0.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        max-width: 100%;
    }

    .video-item {
        width: 100%;
        margin: 0;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h3 {
        font-size: 1.25rem;
    }
} 