/*
Theme Name: GTA Vice City Mod APK
Theme URI: https://example.com/gta-vice-city-mod-apk-theme
Author: GTA Vice City Mod APK Team
Author URI: https://example.com
Description: A WordPress theme for GTA Vice City Mod APK, featuring a neon 1980s aesthetic with a single-page layout, optimized for downloading the mod APK and AdSense approval. Fully mobile-friendly.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: gaming, mod-apk, vice-city, neon, single-page, adsense, mobile-friendly
Text Domain: gta-vice-city-mod-apk
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VCR OSD Mono', monospace;
    background: linear-gradient(135deg, #1a003d, #2e0047);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/VHSGlitchPattern.png') repeat;
    opacity: 0.15;
    animation: glitch 5s infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 200px;
    background: url('https://i.imgur.com/PalmTreeSilhouette.png') no-repeat bottom right;
    opacity: 0.2;
    z-index: -1;
}

header {
    background: url('https://i.imgur.com/NeonViceCity.jpg') no-repeat center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-bottom: 8px solid #ff007a;
    box-shadow: 0 0 30px #00f7ff;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: #ffffff;
    text-shadow: 0 0 15px #00f7ff, 0 0 25px #ff007a;
    margin-bottom: 1.5rem;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}

.hero-content p {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #00f7ff;
    text-shadow: 0 0 10px #ff007a;
    margin-bottom: 2.5rem;
}

.download-btn {
    background: linear-gradient(45deg, #00f7ff, #ff007a, #8b00ff);
    color: #fff;
    padding: 1.8rem 3.5rem;
    font-size: 2rem;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 25px #00f7ff, 0 0 40px #ff007a, 0 0 60px #8b00ff;
    display: inline-block;
    transform: perspective(500px) rotateY(0deg);
    animation: pulse 1.8s infinite;
    font-family: 'Bebas Neue', sans-serif;
}

.download-btn:hover {
    transform: perspective(500px) rotateY(15deg);
    box-shadow: 0 0 50px #ff007a, 0 0 70px #00f7ff, 0 0 90px #8b00ff;
}

section {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

#article, #download, #features, #about, #contact, #home, #terms, #privacy, #dmca {
    background: rgba(30, 20, 50, 0.85);
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 0, 122, 0.7);
    border: 2px solid #00f7ff;
}

#article, #about, #contact, #home, #terms, #privacy, #dmca {
    text-align: left;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem;
}

h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #00f7ff;
    text-shadow: 0 0 12px #ff007a;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p, li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
}

table th, table td {
    border: 2px solid #00f7ff;
    padding: 1rem;
    text-align: left;
}

table th {
    background: linear-gradient(45deg, #ff007a, #00f7ff);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.feature-card {
    background: linear-gradient(45deg, #ff007a, #00f7ff);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(600px) rotateY(0deg);
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(2) {
    background: linear-gradient(45deg, #f9ff00, #ff007a);
}

.feature-card:nth-child(3) {
    background: linear-gradient(45deg, #00f7ff, #8b00ff);
}

.feature-card:nth-child(4) {
    background: linear-gradient(45deg, #8b00ff, #f9ff00);
}

.feature-card:hover {
    transform: perspective(600px) rotateY(10deg);
    box-shadow: 0 12px 25px rgba(255, 0, 122, 0.8);
}

.feature-card::before {
    content: '★';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 12px #00f7ff;
}

.feature-card h3 {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

.divider {
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, #ff007a, #00f7ff);
    margin: 3rem auto;
    box-shadow: 0 0 15px #00f7ff;
}

footer {
    background: linear-gradient(45deg, #1a003d, #2e0047);
    padding: 3rem;
    text-align: center;
    border-top: 8px solid #00f7ff;
    box-shadow: 0 -8px 20px rgba(0, 247, 255, 0.6);
}

footer p {
    font-size: 1.2rem;
    color: #00f7ff;
    text-shadow: 0 0 8px #ff007a;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #00f7ff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.1rem;
    text-shadow: 0 0 8px #ff007a;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff007a;
    text-shadow: 0 0 12px #00f7ff;
}

@keyframes neon-glow {
    from {
        text-shadow: 0 0 10px #ff007a, 0 0 20px #00f7ff;
    }
    to {
        text-shadow: 0 0 20px #ff007a, 0 0 40px #00f7ff;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes glitch {
    0% { background-position: 0 0; }
    50% { background-position: 2px 2px; }
    100% { background-position: 0 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .download-btn {
        font-size: 1.5rem;
        padding: 1.2rem 2.5rem;
    }

    section {
        padding: 3rem 1rem;
    }

    #article, #about, #contact, #home, #terms, #privacy, #dmca {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.3rem;
    }

    p, li {
        font-size: 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    table th, table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .footer-links a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .download-btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    section {
        padding: 2rem 0.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .divider {
        width: 90%;
    }

    footer p {
        font-size: 1rem;
    }
}