/* Kami menambahkan animasi untuk bagian header. */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi header awal */
.header {
    animation: fadeInDown 0.7s ease forwards;
}@font-face {
    font-family: 'GTA';
    src: url('https://fonts.cdnfonts.com/css/pricedown') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gta-orange: #8B5A2B;
    --gta-green: #008e11fd;
    --gta-blue: #aeaf86cc;
    --gta-red: #711111;
    --gta-yellow: #8a490c;
    --gta-black: #000000;
    --gta-white: #F9F6F0;
    --gta-gray: #9d8e82;
    --gta-brown: #4f3f2a;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--gta-white);
    background-color: #1E1E1E;
    background-image: url('image/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    line-height: 1.6;
    overflow-x: hidden; /* Untuk animasi */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Latar belakang animasi */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.5;
}

.bg-animation span {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--gta-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--gta-orange);
    animation: move 15s linear infinite;
}

.bg-animation span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-duration: 35s;
}

.bg-animation span:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.bg-animation span:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-duration: 40s;
    animation-delay: 5s;
}

.bg-animation span:nth-child(4) {
    top: 50%;
    left: 50%;
    animation-duration: 25s;
    animation-delay: 7s;
}

.bg-animation span:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-duration: 45s;
    animation-delay: 1s;
}

.bg-animation span:nth-child(6) {
    top: 20%;
    left: 70%;
    animation-duration: 38s;
    animation-delay: 3s;
}

@keyframes move {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(100px) translateY(-50px);
    }
    50% {
        transform: translateX(50px) translateY(100px);
    }
    75% {
        transform: translateX(-100px) translateY(50px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gta-white);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 3px 3px 0 var(--gta-black), 
                 -1px -1px 0 var(--gta-black),  
                 1px -1px 0 var(--gta-black),
                 -1px 1px 0 var(--gta-black),
                 1px 1px 0 var(--gta-black);
}

h2 {
    font-size: 2.5rem;
    color: var(--gta-orange);
    text-shadow: 2px 2px 0 var(--gta-black);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gta-orange);
    transition: width 0.5s ease-in-out;
}

.section-header:hover h2::after {
    width: 200px;
}

h3 {
    font-size: 1.8rem;
    color: var(--gta-yellow);
    text-shadow: 2px 2px 0 var(--gta-black);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    border-bottom: 3px solid var(--gta-orange);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
}

.centered-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}

.centered-logo img {
    height: 90px; /* Logo yang diperbesar */
    filter: drop-shadow(2px 2px 0 var(--gta-black));
    animation: rotateLogo 10s infinite alternate;
}

@keyframes rotateLogo {
    0% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    width: 100%;
}

.menu-item {
    margin: 0 15px; /* Peningkatan jarak antar-item menu */
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-link {
    font-family: 'Anton', sans-serif;
    color: var(--gta-white);
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 18px; /* Padding yang diperbesar untuk tombol yang lebih besar */
    position: relative;
    letter-spacing: 1px;
    font-size: 1.3rem; /* Ukuran huruf diperbesari */
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: var(--gta-orange);
    text-shadow: 0 0 10px var(--gta-orange);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gta-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--gta-orange);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--gta-white);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: var(--gta-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 3px 3px 0 var(--gta-black), 
                 -1px -1px 0 var(--gta-black),  
                 1px -1px 0 var(--gta-black),
                 -1px 1px 0 var(--gta-black),
                 1px 1px 0 var(--gta-black);
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0% { text-shadow: 3px 3px 0 var(--gta-black); }
    1% { text-shadow: 3px 3px 0 var(--gta-black), -2px 0 0 var(--gta-red), 2px 0 0 var(--gta-blue); }
    2% { text-shadow: 3px 3px 0 var(--gta-black); }
    3% { text-shadow: 3px 3px 0 var(--gta-black), 0 -2px 0 var(--gta-red), 0 2px 0 var(--gta-blue); }
    4% { text-shadow: 3px 3px 0 var(--gta-black); }
    5% { text-shadow: 3px 3px 0 var(--gta-black), -1px 0 0 var(--gta-red), 1px 0 0 var(--gta-blue); }
    6% { text-shadow: 3px 3px 0 var(--gta-black); }
    100% { text-shadow: 3px 3px 0 var(--gta-black); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gta-white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 var(--gta-black);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    background: var(--gta-blue);
    color: var(--gta-white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    font-size: 1.1rem;
    text-shadow: 1px 1px 0 var(--gta-black);
    box-shadow: 0 4px 0 var(--gta-black);
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 7px 0 var(--gta-black);
    color: var(--gta-white);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 var(--gta-black);
}

.btn-secondary {
    background: var(--gta-orange);
}

/* Stars Rating */
.stars {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.star {
    width: 30px;
    height: 30px;
    background-color: var(--gta-yellow);
    margin: 0 5px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 2s infinite alternate;
    box-shadow: 0 0 10px var(--gta-yellow);
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Elemen animasi yang muncul saat menggulir */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--gta-white);
    font-size: 1.2rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-img {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.about-img img {
    width: 100%;
    border: 3px solid var(--gta-orange);
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.about-img:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gta-orange);
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gta-orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gta-yellow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gta-orange);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: var(--gta-yellow);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gta-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    text-shadow: 0 0 10px var(--gta-yellow);
}

.feature-desc {
    color: var(--gta-white);
}

/* SERVER LORE SECTION */
.factions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.faction-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gta-orange);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

.faction-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.faction-card::after {
    content: 'KLIK UNTUK MELIHAT LEBIH BANYAK';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--gta-white);
    padding: 3px 6px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faction-card:hover::after {
    opacity: 1;
}

.criminal {
    border-color: var(--gta-red);
}

.business {
    border-color: var(--gta-green);
}

.public {
    border-color: var(--gta-blue);
}

.faction-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.faction-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.faction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: saturate(80%);
}

.faction-card:hover .faction-img img {
    transform: scale(1.1);
    filter: saturate(120%);
}

.faction-content {
    padding: 20px;
    transform: translateZ(20px);
}

.faction-type {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--gta-orange);
    color: var(--gta-white);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.faction-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: typeShine 3s infinite;
}

@keyframes typeShine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

.criminal .faction-type {
    background-color: var(--gta-red);
}

.business .faction-type {
    background-color: var(--gta-green);
}

.public .faction-type {
    background-color: var(--gta-blue);
}

.entertainment .faction-type {
    background-color: var(--gta-yellow);
}

.faction-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.faction-card:hover .faction-title {
    transform: translateX(5px);
}

.criminal .faction-title {
    color: var(--gta-red);
}

.business .faction-title {
    color: var(--gta-green);
}

.public .faction-title {
    color: var(--gta-blue);
}

.entertainment .faction-title {
    color: var(--gta-yellow);
}

.faction-desc {
    color: var(--gta-white);
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 3px 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gta-white);
    font-size: 0.8rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.faction-card:hover .tag {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: rgba(17, 17, 17, 0.95);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border: 3px solid var(--gta-orange);
    box-shadow: 0 0 30px rgba(255, 156, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--gta-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--gta-orange);
    transform: rotate(90deg);
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--gta-orange);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gta-yellow);
}

/* Animasi sorotan tab aktif */
.faction-card.active {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.criminal.active {
    box-shadow: 0 15px 30px rgba(224, 50, 50, 0.3);
}

.business.active {
    box-shadow: 0 15px 30px rgba(105, 158, 60, 0.3);
}

.public.active {
    box-shadow: 0 15px 30px rgba(76, 117, 183, 0.3);
}

.entertainment.active {
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* Development Section */
.dev-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/development-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px;
    margin: 50px 0;
    text-align: center;
    border: 3px solid var(--gta-orange);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.dev-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dev-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, transparent, rgba(255, 156, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: devShine 10s linear infinite;
}

@keyframes devShine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.dev-icon {
    font-size: 3rem;
    color: var(--gta-orange);
    margin-bottom: 20px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dev-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gta-orange);
}

.dev-desc {
    color: var(--gta-white);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.progress-bar {
    height: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gta-orange);
    max-width: 600px;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 65%;
    height: 100%;
    background-color: var(--gta-orange);
    animation: progress-anim 2s ease-in-out infinite alternate;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: progressGlow 1s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes progress-anim {
    0% { width: 60%; }
    100% { width: 70%; }
}

/* Join Section */
.join {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/jwnhQ2T.jpg') center center/cover;
    opacity: 0.1;
    z-index: -1;
    animation: bgZoom 30s infinite alternate;
}

@keyframes bgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gta-orange);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gta-orange), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.step-card:hover::before {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--gta-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--gta-orange);
    color: var(--gta-white);
    border: 2px solid var(--gta-black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-card:hover .step-number {
    background-color: var(--gta-yellow);
    transform: translateX(-50%) scale(1.1);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--gta-orange);
    margin: 10px 0 20px;
    transition: all 0.5s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.2);
    color: var(--gta-yellow);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gta-yellow);
}

.step-desc {
    color: var(--gta-white);
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gta-orange);
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gta-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gta-yellow);
}

.vision-icon {
    font-size: 2.5rem;
    color: var(--gta-orange);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.vision-card:hover .vision-icon {
    /* Removed movement animation */
    color: var(--gta-yellow);
}

.vision-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gta-yellow);
    transition: all 0.3s ease;
}

.vision-card:hover .vision-title {
    text-shadow: 0 0 10px var(--gta-yellow);
}

.vision-desc {
    color: var(--gta-white);
}

/* Lore Section */
.lore {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gta-orange);
    padding: 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.lore-title {
    font-size: 1.8rem;
    color: var(--gta-orange);
    margin-bottom: 20px;
    text-align: center;
}

.lore-text {
    color: var(--gta-white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.lore-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gta-orange), transparent);
    margin: 30px 0;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gta-orange);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://imgur.com/jwnhQ2T.jpg') center center/cover;
    opacity: 0.05;
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gta-orange);
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gta-orange);
    transition: width 0.3s ease;
}

.footer-col:hover .footer-title::after {
    width: 100%;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-link a {
    color: var(--gta-white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link a:hover {
    color: var(--gta-orange);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gta-white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gta-orange);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: var(--gta-white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 156, 0, 0.3);
}

.footer-form {
    display: flex;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.footer-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gta-white);
    outline: none;
    transition: all 0.3s ease;
}

.footer-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
}

.footer-btn {
    padding: 10px 20px;
    background-color: var(--gta-orange);
    color: var(--gta-white);
    border: none;
    cursor: pointer;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.footer-btn:hover::before {
    left: 100%;
}

.footer-btn:hover {
    background-color: var(--gta-yellow);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* GTA Style Loading Bar */
.loading-bar {
    height: 5px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--gta-black);
    z-index: 9999;
}

.loader {
    height: 100%;
    width: 0;
    background-color: var(--gta-orange);
    animation: loading 2s ease-in-out forwards;
    position: relative;
}

.loader::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--gta-orange));
    filter: blur(5px);
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Wasted Screen Effect */
.wasted {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.wasted.show {
    opacity: 1;
    animation: wastedEffect 0.5s ease-in-out;
}

@keyframes wastedEffect {
    0% { filter: grayscale(0) blur(0); }
    50% { filter: grayscale(1) blur(10px); }
    100% { filter: grayscale(1) blur(5px); }
}

.wasted-text {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: var(--gta-red);
    text-shadow: 3px 3px 0 var(--gta-black);
    animation: wasted-anim 1s ease-in-out infinite alternate;
    letter-spacing: 10px;
}

@keyframes wasted-anim {
    0% { transform: scale(0.95); opacity: 0.9; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* Radio Station Style Audio Controller */
.radio {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border: 2px solid var(--gta-orange);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.radio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.radio-icon {
    color: var(--gta-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: radioWave 2s infinite alternate;
}

@keyframes radioWave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.radio-text {
    color: var(--gta-white);
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.radio:hover .radio-text {
    color: var(--gta-orange);
}

.radio-btn {
    background-color: var(--gta-orange);
    border: none;
    color: var(--gta-white);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 5px;
}

.radio-btn:hover {
    background-color: var(--gta-yellow);
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav {
        position: relative;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
        z-index: 200;
    }

    .menu.active {
        right: 0;
    }

    .menu-item {
        margin: 20px 0;
    }
    
    .centered-logo {
        margin-top: 10px;
    }
    
    .centered-logo img {
        height: 70px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stars {
        margin: 20px 0;
    }

    .star {
        width: 20px;
        height: 20px;
    }

    .about-content {
        flex-direction: column;
    }

    .feature-grid,
    .factions,
    .vision-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .dev-banner {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .radio {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}