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

:root {
    --primary-color: #2D5016;
    --secondary-color: #8B4513;
    --accent-color: #FFD700;
    --bg-dark: #1a1a1a;
    --bg-card: #2a2a2a;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --danger-color: #DC143C;
    --dirt-brown: #8B6914;
    --stone-gray: #7F7F7F;
    --diamond-blue: #5DADE2;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.pixel-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 36px;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.pixel-text-small {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, #1a3a0f 100%);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 6px 0px rgba(0, 0, 0, 0.8);
    border-bottom: 4px solid var(--secondary-color);
}

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

.nav-logo .logo-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: var(--accent-color);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 16px;
    border: 3px solid transparent;
    transition: var(--transition);
    background-color: rgba(139, 69, 19, 0.3);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--accent-color);
    border: 3px solid var(--accent-color);
    background-color: rgba(139, 69, 19, 0.6);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 4px;
    background-color: var(--accent-color);
    transition: var(--transition);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    image-rendering: pixelated;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    padding: 15px 30px;
    border: 4px solid;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
    position: relative;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px rgba(0, 0, 0, 0.8);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--dirt-brown);
}

.btn-secondary:hover {
    background-color: #A0522D;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px rgba(0, 0, 0, 0.8);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: var(--bg-dark);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(45, 80, 22, 0.1) 16px, rgba(45, 80, 22, 0.1) 17px),
        repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(45, 80, 22, 0.1) 16px, rgba(45, 80, 22, 0.1) 17px);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 30px;
    border: 5px solid var(--secondary-color);
    text-align: center;
    transition: var(--transition);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px);
}

.service-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--accent-color);
    box-shadow: 10px 10px 0px rgba(255, 215, 0, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--accent-color);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-gray);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.vps-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(45, 80, 22, 0.05) 16px, rgba(45, 80, 22, 0.05) 17px),
        repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(45, 80, 22, 0.05) 16px, rgba(45, 80, 22, 0.05) 17px);
}

.panel-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(139, 69, 19, 0.05) 16px, rgba(139, 69, 19, 0.05) 17px),
        repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(139, 69, 19, 0.05) 16px, rgba(139, 69, 19, 0.05) 17px);
}

.bot-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(45, 80, 22, 0.05) 16px, rgba(45, 80, 22, 0.05) 17px),
        repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(45, 80, 22, 0.05) 16px, rgba(45, 80, 22, 0.05) 17px);
}

.ddos-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(139, 69, 19, 0.05) 16px, rgba(139, 69, 19, 0.05) 17px),
        repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(139, 69, 19, 0.05) 16px, rgba(139, 69, 19, 0.05) 17px);
}

.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 30px auto;
    display: block;
    border: 6px solid var(--secondary-color);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
    image-rendering: pixelated;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 5px solid var(--secondary-color);
    padding: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px);
}

.pricing-card:hover {
    transform: translate(-4px, -4px);
    border-color: var(--accent-color);
    box-shadow: 10px 10px 0px rgba(255, 215, 0, 0.5);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    border-width: 6px;
    background-color: rgba(255, 215, 0, 0.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 8px 16px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
    border: 3px solid var(--secondary-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--secondary-color);
}

.pricing-header h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 18px;
    color: var(--text-gray);
}

.amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Press Start 2P', cursive;
}

.period {
    font-size: 14px;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 2px solid rgba(139, 69, 19, 0.3);
    color: var(--text-gray);
    font-family: 'Roboto', sans-serif;
}

.pricing-features li::before {
    content: "▸ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
}

/* Warning Box */
.warning-box {
    background-color: rgba(220, 20, 60, 0.1);
    border: 4px solid var(--danger-color);
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
}

.warning-box p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(45, 80, 22, 0.05) 16px, rgba(45, 80, 22, 0.05) 17px),
        repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(45, 80, 22, 0.05) 16px, rgba(45, 80, 22, 0.05) 17px);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-card);
    padding: 30px;
    text-align: center;
    border: 5px solid var(--secondary-color);
    transition: var(--transition);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px);
}

.contact-card:hover {
    border-color: var(--accent-color);
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px rgba(255, 215, 0, 0.5);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--accent-color);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
}

.contact-name {
    font-size: 18px;
    color: var(--accent-color);
    margin-top: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
}

.contact-link:hover {
    color: var(--text-light);
    text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.5);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--bg-card);
    padding: 30px;
    border: 5px solid var(--secondary-color);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(139, 69, 19, 0.1) 8px, rgba(139, 69, 19, 0.1) 9px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background-color: var(--bg-dark);
    border: 4px solid var(--secondary-color);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 4px 4px 0px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, #1a3a0f 100%);
    padding: 60px 0 20px;
    border-top: 6px solid var(--secondary-color);
    box-shadow: 0 -6px 0px rgba(0, 0, 0, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px;
}

.footer-section h4 {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
}

.footer-section p,
.footer-section ul {
    color: var(--text-gray);
}

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

.footer-section ul li {
    padding: 8px 0;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    border: 3px solid var(--secondary-color);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    transition: var(--transition);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 3px solid rgba(139, 69, 19, 0.5);
    color: var(--text-gray);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    border: 4px solid var(--secondary-color);
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px rgba(0, 0, 0, 0.8);
    background-color: #FFC700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 4px solid var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border: 3px solid var(--accent-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
        border-bottom: 4px solid var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .pixel-text {
        font-size: 24px;
    }

    .pixel-text-small {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pixel-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn {
        font-size: 10px;
        padding: 12px 20px;
    }

    .amount {
        font-size: 28px;
    }
}
