/* GTA San Andreas Custom Styles */

/* Custom Font Loading */
@font-face {
    font-family: 'GTA';
    src: url('../font/gta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Alternative font loading for better compatibility */
@font-face {
    font-family: 'GTA';
    src: url('../../assets/font/gta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* H1 Elements with Custom GTA Font */
h1 {
    font-family: 'GTA', 'Orbitron', monospace !important;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Force GTA font for all H1 elements and font-gta class */
h1,
.font-gta {
    font-family: 'GTA', 'Orbitron', monospace !important;
}

/* Font loading indicator */
.font-gta-loaded {
    font-family: 'GTA', 'Orbitron', monospace !important;
}

/* Fallback styling if GTA font fails to load */
h1:not(.font-gta-loaded) {
    font-family: 'Orbitron', monospace !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Font loading success indicator */
.gta-font-loaded h1 {
    font-family: 'GTA', 'Orbitron', monospace !important;
    transition: all 0.3s ease;
}

/* Font loading animation */
@keyframes fontLoad {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.font-gta-loaded {
    animation: fontLoad 0.5s ease-out;
}

/* Hero Section Specific Styles */
.hero-title {
    font-family: 'GTA', 'Orbitron', monospace !important;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9);
    font-weight: 900;
    letter-spacing: 3px;
}

/* Character Money Effects */
.character-money {
    animation: moneyFloat 3s ease-in-out infinite;
}

@keyframes moneyFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Mobile Game Style Borders */
.mobile-border {
    /* Border removed */
}

/* Promotional Panel Hover Effects */
.promo-panel {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.promo-panel:hover::before {
    left: 100%;
}

.promo-panel:hover {
    transform: translateY(-5px);
}

/* Character Card Effects */
.character-card {
    position: relative;
    overflow: hidden;
}

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

.character-card:hover::after {
    transform: translateX(100%);
}

/* Bottom Navigation Icons */
.nav-icon {
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon:hover {
    transform: scale(1.1);
    background-color: #FFD700 !important;
}

.nav-icon:hover i {
    color: #000 !important;
}

/* Play Button Effect - CHUB Orange Style */
.play-button {
    background: linear-gradient(135deg, #ff8c00, #ff6b35) !important;
    border: 3px solid #ff4500;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', monospace !important;
}

.play-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: left 0.6s ease;
}

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

.play-button:hover {
    background: linear-gradient(135deg, #ff6b35, #ff4500) !important;
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    transform: translateY(-2px) scale(1.05);
}

.play-button:active {
    transform: translateY(1px) scale(1.02);
}

/* Hero Character Scroll Animation */
.hero-character {
    transition: all 0.3s ease-out;
    transform-origin: center bottom;
}

.hero-character.scrolled {
    transform: translateX(-125%) translateY(25%) scale(1.3);
}

/* Custom Scrollbar */
/* Hide scrollbar but keep scroll functionality */
::-webkit-scrollbar {
    width: 0px;
    /* Hide scrollbar width */
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

/* For Firefox */
html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

/* For Internet Explorer and Edge */
html::-webkit-scrollbar {
    display: none;
}

/* For all elements that might have scrollbars */
* {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Glitch Effect Animation */
@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* GTA Button Styles */
.gta-button {
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}

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

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

.gta-button:hover {
    animation: glitch 0.3s ease-in-out;
}

/* Navigation Link Styles */
.nav-link {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

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

/* Character Card Hover Effects */
.character-card {
    position: relative;
    overflow: hidden;
}

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

.character-card:hover::before {
    left: 100%;
}

.character-card:hover {
    /* Removed glow effect */
}

/* Mission Item Styles */
.mission-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateX(10px);
}

/* Vehicle Card Styles */
.vehicle-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-card i {
    transition: all 0.3s ease;
}

.vehicle-card:hover i {
    transform: scale(1.2);
}

/* Loading Screen Animation */
#loading-screen {
    animation: fadeIn 0.5s ease-in;
    transition: opacity 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Text Glow Effect - Removed */
.text-glow {
    /* Glow effect removed */
}

/* Background Pattern */
.bg-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .text-6xl {
        font-size: 3rem;
    }

    .text-8xl {
        font-size: 4rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease;
}

#mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Audio Controls */
.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 30;
}

.audio-btn {
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-btn:hover {
    background: #FFD700;
    color: #000;
    transform: scale(1.1);
}

/* Particle Effect Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: float 6s infinite linear;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Preloader Specific Styles */
#loading-screen {
    background: #000000;
}

#loading-screen img {
    transition: all 0.3s ease;
}

/* Remove general hover effect for all images - will be specific to grid images only */

/* Logo positioning and styling */
#loading-screen img[src*="logotext.svg"] {
    /* Removed glow effect */
}

/* Image grid styling */
#loading-screen .grid {
    width: 100vw;
    /* Full viewport width */
    max-width: none;
    /* Remove max-width constraint */
    margin: 0;
    padding: 0 1rem;
    /* Add some padding to prevent images touching screen edges */
}

#loading-screen .grid img {
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#loading-screen .grid img:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
}

#loading-screen .grid .col-span-1 {
    transition: all 0.3s ease;
    cursor: pointer;
}

#loading-screen .grid .col-span-1:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for preloader */
@media (max-width: 768px) {
    #loading-screen .grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    #loading-screen img[src*="logotext.svg"] {
        width: 200px;
    }
}

@media (max-width: 480px) {
    #loading-screen .grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    #loading-screen img[src*="logotext.svg"] {
        width: 150px;
    }
}

/* Section Transitions */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Selection */
::selection {
    background: #FFD700;
    color: #000;
}

::-moz-selection {
    background: #FFD700;
    color: #000;
}

/* Uiverse.io Button Styling */
button {
    font-size: 18px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

button:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

button:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

button:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

button:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

button:active {
    transform: translateY(4px);
}

button:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* Video Gallery with Parallelogram Clipping Mask */
.video-container {
    position: relative;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: scale(1.05);
}

.parallelogram-clip {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    /* Jajar genjang clipping mask - kemiringan ke kanan */
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 20% 100%);
    transition: all 0.3s ease;
    transform: scale(0.8);
    transform-origin: center;
}

.parallelogram-clip:hover {
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
    transform: scale(0.82);
}

.parallelogram-clip video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Responsive adjustments for video gallery */
@media (max-width: 768px) {
    .parallelogram-clip {
        aspect-ratio: 1/1;
        clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%);
        transform: scale(0.8);
    }

    .parallelogram-clip:hover {
        clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 20% 100%);
        transform: scale(0.82);
    }
}

/* Footer Social Buttons */
.social-button {
    width: 48px;
    height: 48px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.social-button:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.social-button:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.social-button:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.social-button:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.social-button:active {
    transform: translateY(4px);
}

.social-button:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* CALL $CHUB Button */
.call-chub-button {
    font-size: 18px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.call-chub-button:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.call-chub-button:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.call-chub-button:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.call-chub-button:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.call-chub-button:active {
    transform: translateY(4px);
}

.call-chub-button:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* Copy CA Button */
.copy-ca-button {
    width: 32px;
    height: 32px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.5rem;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    margin-left: 8px;
}

.copy-ca-button:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.copy-ca-button:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.copy-ca-button:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.copy-ca-button:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.copy-ca-button:active {
    transform: translateY(4px);
}

.copy-ca-button:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* Footer CA Box with Font Secondary */
.footer-ca-box {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
}

/* Responsive Footer Styles */

/* Tablet Layout Styles */
.copy-ca-button-tablet {
    width: 28px;
    height: 28px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.4rem;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    margin-left: 6px;
}

.copy-ca-button-tablet:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.copy-ca-button-tablet:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.copy-ca-button-tablet:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.copy-ca-button-tablet:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.copy-ca-button-tablet:active {
    transform: translateY(4px);
}

.copy-ca-button-tablet:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

.call-chub-button-tablet {
    font-size: 16px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.call-chub-button-tablet:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.call-chub-button-tablet:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.call-chub-button-tablet:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.call-chub-button-tablet:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.call-chub-button-tablet:active {
    transform: translateY(4px);
}

.call-chub-button-tablet:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* Mobile Layout Styles */
.social-button-mobile {
    width: 40px;
    height: 40px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.social-button-mobile:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.social-button-mobile:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.social-button-mobile:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.social-button-mobile:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.social-button-mobile:active {
    transform: translateY(4px);
}

.social-button-mobile:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

.footer-ca-box-mobile {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
}

.copy-ca-button-mobile {
    width: 24px;
    height: 24px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.3rem;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    margin-left: 4px;
}

.copy-ca-button-mobile:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.copy-ca-button-mobile:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.copy-ca-button-mobile:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.copy-ca-button-mobile:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.copy-ca-button-mobile:active {
    transform: translateY(4px);
}

.copy-ca-button-mobile:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

.call-chub-button-mobile {
    font-size: 14px;
    background-color: #008542;
    color: #fff;
    text-shadow: 0 2px 0 rgb(0 0 0 / 25%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: unset;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    transition: all 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.call-chub-button-mobile:before {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
    z-index: -1;
    background-color: #008542 !important;
    box-shadow: 0 -4px rgb(21 108 0 / 50%) inset,
        0 4px rgb(100 253 31 / 99%) inset, -4px 0 rgb(100 253 31 / 50%) inset,
        4px 0 rgb(21 108 0 / 50%) inset;
}

.call-chub-button-mobile:after {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
    transition: 0.7s cubic-bezier(0, 0.8, 0.26, 0.99);
}

.call-chub-button-mobile:hover:before {
    box-shadow: 0 -4px rgb(0 0 0 / 50%) inset, 0 4px rgb(255 255 255 / 20%) inset,
        -4px 0 rgb(255 255 255 / 20%) inset, 4px 0 rgb(0 0 0 / 50%) inset;
}

.call-chub-button-mobile:hover:after {
    box-shadow: 0 4px 0 0 rgb(0 0 0 / 15%);
}

.call-chub-button-mobile:active {
    transform: translateY(4px);
}

.call-chub-button-mobile:active:after {
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 15%);
}

/* AOS Custom Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom AOS animations for GTA theme */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Enhanced video container animations */
.video-container[data-aos] {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-container[data-aos].aos-animate {
    transform: scale(1);
}

/* Footer animations with GTA style */
footer [data-aos] {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Disable AOS on preloader elements */
#loading-screen [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

#loading-screen [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
}