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

/* Custom Background Pattern */
.container {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(
            circle farthest-side at 0% 50%,
            #282828 23.5%,
            rgba(255, 170, 0, 0) 0
        )
        21px 30px,
    radial-gradient(
            circle farthest-side at 0% 50%,
            #2c3539 24%,
            rgba(240, 166, 17, 0) 0
        )
        19px 30px,
    linear-gradient(
            #282828 14%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 85%,
            #282828 0
        )
        0 0,
    linear-gradient(
            150deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0
        )
        0 0,
    linear-gradient(
            30deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0
        )
        0 0,
    linear-gradient(90deg, #2c3539 2%, #282828 0, #282828 98%, #2c3539 0%) 0 0
        #282828;
    background-size: 40px 60px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'PaybAck', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

/* Container Sections */
.container-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(44, 53, 57, 0.8), rgba(44, 53, 57, 0.6));
    padding: 3rem 0 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-logo h2 {
    font-family: 'PaybAck', sans-serif;
    color: #f0a611;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    margin-left: -12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f0a611;
}

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

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

.nav-right {
    position: absolute;
    right: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-btn:hover {
    background: rgba(240, 166, 17, 0.1);
    color: #f0a611;
}

.dropdown-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 166, 17, 0.2);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: fadeInDown 0.3s ease;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.8rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(240, 166, 17, 0.1);
    white-space: nowrap;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: rgba(240, 166, 17, 0.1);
    color: #f0a611;
}

.dropdown-link i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.dropdown-link span {
    flex: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 2rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 0 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(44, 53, 57, 0.6), transparent);
}

.hero-content {
    padding-top: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f0a611, #ffaa00, #ffffff, #f0a611, #ffaa00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorFade 4s ease-in-out infinite;
}

@keyframes colorFade {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0a611;
    font-family: 'JetBrains Mono', monospace;
}

.percent-symbol {
    font-family: Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0a611;
    display: inline;
    visibility: visible;
    opacity: 1;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* New Product Banner */
.new-product-banner {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-content {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(240, 166, 17, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.banner-content:hover {
    border-color: #f0a611;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

.banner-text {
    flex: 1;
    text-align: center;
}

.banner-text h3 {
    font-family: 'PaybAck', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.banner-text h3 i {
    font-size: 1.2rem;
    color: #f0a611;
}

.banner-text p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.banner-badge {
    position: absolute;
    top: -8px;
    right: 20px;
}

.banner-badge span {
    background: linear-gradient(135deg, #f0a611, #ffaa00);
    color: #282828;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'PaybAck', sans-serif;
    animation: pulse 2s ease-in-out infinite;
    transform-origin: center;
    display: inline-block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(240, 166, 17, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(240, 166, 17, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(240, 166, 17, 0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f0a611, #ffaa00);
    color: #282828;
    border-color: #f0a611;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffaa00, #f0a611);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 166, 17, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #282828;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #f0a611;
    border-color: #f0a611;
}

.btn-outline:hover {
    background: #f0a611;
    color: #282828;
    transform: translateY(-2px);
}

/* Break Line */
.break-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, #f0a611, transparent);
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.break-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: #f0a611;
    box-shadow: 0 0 20px rgba(240, 166, 17, 0.5);
}

.break-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 8px,
        #282828 8px,
        #282828 12px
    );
}

.break-line-small {
    height: 4px;
    background: transparent;
    margin: 0;
    position: relative;
}

.break-line-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f0a611, transparent);
    box-shadow: 0 0 10px rgba(240, 166, 17, 0.3);
}

.break-line-logo {
    height: 30px;
    width: auto;
    z-index: 10;
    background: transparent;
    padding: 4px 8px;
    border-radius: 4px;
}

.break-line-logo-small {
    height: 30px;
    width: auto;
    z-index: 10;
    background: transparent;
    padding: 4px 8px;
    border-radius: 4px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services .section-title,
.pricing .section-title {
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: rgba(44, 53, 57, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(40, 40, 40, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 166, 17, 0.2);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #f0a611;
}

.service-card.featured {
    border-color: #f0a611;
    background: rgba(240, 166, 17, 0.1);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0a611, #ffaa00);
    color: #282828;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: #f0a611;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f0a611;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    background: rgba(40, 40, 40, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(44, 53, 57, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 166, 17, 0.2);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: #f0a611;
    background: rgba(240, 166, 17, 0.1);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f0a611, #ffaa00);
    color: #282828;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 2.5rem;
    color: #f0a611;
    vertical-align: baseline;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f0a611;
    font-family: 'JetBrains Mono', monospace;
}

.period {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #f0a611;
    font-size: 0.9rem;
}

/* Game Servers Section */
.game-servers {
    background: rgba(44, 53, 57, 0.3);
}

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

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

.gameservers .features {
    background: rgba(44, 53, 57, 0.3);
}

/* 404 Error Page Styles */
.error-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: #f0a611;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.error-title {
    font-size: 8rem;
    font-weight: 700;
    color: #f0a611;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(240, 166, 17, 0.3);
}

.error-subtitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-suggestions {
    background: rgba(44, 53, 57, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(240, 166, 17, 0.3);
}

.error-suggestions h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.suggestion-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(240, 166, 17, 0.1);
    border: 1px solid rgba(240, 166, 17, 0.3);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.suggestion-link:hover {
    background: rgba(240, 166, 17, 0.2);
    border-color: #f0a611;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.suggestion-link i {
    font-size: 1.5rem;
    color: #f0a611;
}

.suggestion-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 6rem;
    }
    
    .error-subtitle {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestion-links {
        flex-direction: column;
        align-items: center;
    }
}

.game-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.game-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.pricing-card:hover .game-logo-img {
    transform: scale(1.1);
}

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-style: italic;
}

.game-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin: 2rem 0 3rem 0;
}

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.game-icon {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: grayscale(20%);
    margin-bottom: 0.8rem;
}

.game-icon:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.game-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.game-servers-banner {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(240, 166, 17, 0.1), rgba(44, 53, 57, 0.3));
    border: 1px solid rgba(240, 166, 17, 0.3);
    border-radius: 15px;
    text-align: center;
}

.game-servers-banner .banner-content h3 {
    font-family: 'PaybAck', sans-serif;
    font-size: 1.8rem;
    color: #f0a611;
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-servers-banner .banner-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Features Section */
.features {
    background: transparent;
}

/* Features Section with Background for Web Hosting Page */
.webhosting .features {
    background: rgba(44, 53, 57, 0.3);
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: #f0a611;
    margin-bottom: 1.5rem;
}

.feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: rgba(40, 40, 40, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f0a611;
    font-family: 'JetBrains Mono', monospace;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(240, 166, 17, 0.1);
    border: 2px solid #f0a611;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #f0a611;
}

/* Get Started Section */
.get-started {
    background: transparent;
    padding: 100px 0;
}

.offer-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(240, 166, 17, 0.2);
}

.offer-title {
    font-family: 'PaybAck', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(240, 166, 17, 0.3);
}

.offer-subtitle {
    font-family: 'PaybAck', sans-serif;
    font-size: 1.2rem;
    color: #f0a611;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.discount-code {
    background: linear-gradient(135deg, #f0a611, #ffaa00);
    color: #282828;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
}

.discount-code:hover {
    background: linear-gradient(135deg, #ffaa00, #f0a611);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(240, 166, 17, 0.4);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: rgba(40, 40, 40, 0.9);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'PaybAck', sans-serif;
    color: #f0a611;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 30px;
    width: auto;
}

.footer-logo h3 {
    margin: 0;
    margin-left: -8px;
    font-size: 1.5rem;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f0a611;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(240, 166, 17, 0.1);
    color: #f0a611;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f0a611;
    color: #282828;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 166, 17, 0.2);
    color: #b0b0b0;
}

/* Dropdown Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }
    
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: rgba(40, 40, 40, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-stats {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container-section {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .game-servers .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-servers .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gameservers .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.pricing-card,
.feature {
    animation: fadeInUp 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #2c3539;
}

::-webkit-scrollbar-thumb {
    background: #f0a611;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffaa00;
}
