/* 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;
}

/* Admin Page Headings - Portal Specific */
.portal-main .hero .container-section h2 {
    padding-top: 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: linear-gradient(180deg, rgba(44, 53, 57, 0.4), transparent);
}

.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;
}

/* ============================================
   PORTAL-SPECIFIC STYLES
   ============================================ */

/* Remove gap between navbar and portal menu */
body .container .navbar {
    margin-bottom: 0 !important;
    padding: 3rem 0 0 0 !important;
}

body .container .nav-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Portal nav directly below navbar - add spacing */
body .container .navbar + .portal-nav {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}

body .container .portal-nav {
    margin-top: 0 !important;
    padding-top: 1rem !important;
}

/* Portal nav is now inside container, no wrapper needed */

/* Ensure container closes properly with no extra spacing */
body .container {
    margin-bottom: 0 !important;
}

/* Make sure portal menu is visible and styled */
nav.portal-nav {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(180deg, rgba(44, 53, 57, 0.5), rgba(44, 53, 57, 0.6)) !important;
    border: none !important;
}

nav.portal-nav ul.portal-nav-menu {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
}

nav.portal-nav ul.portal-nav-menu li {
    list-style: none !important;
}

nav.portal-nav a.portal-nav-link {
    color: #ffffff !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

/* Portal Wrapper - No longer used, content is directly in container */

/* Portal Navigation Menu - Horizontal Bar */
.portal-nav {
    width: 100%;
    background: linear-gradient(180deg, rgba(44, 53, 57, 0.5), rgba(44, 53, 57, 0.6));
    border: none !important;
    padding: 1rem 0;
    margin: 0;
    position: relative;
    margin-top: 0 !important;
    display: block !important;
}

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

.portal-nav-menu {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.portal-nav-item {
    margin: 0;
    list-style: none !important;
}

.portal-nav-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

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

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

.portal-nav-link.active {
    color: #f0a611;
}

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

.portal-nav-link i {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    color: inherit;
}

.portal-nav-link span {
    display: inline-block;
}

/* Portal content cards should have semi-transparent backgrounds */
.auth-form,
.dashboard-section,
.package-card {
    background: rgba(40, 40, 40, 0.8) !important;
    background-color: rgba(40, 40, 40, 0.8) !important;
}

/* Package Grid - Portal Specific */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(240, 166, 17, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f0a611;
    font-family: 'PaybAck', sans-serif;
}

.package-features {
    margin: 1.5rem 0;
}

.package-features .feature {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(240, 166, 17, 0.1);
    color: #e0e0e0;
}

.package-features .feature strong {
    color: #f0a611;
}

.package-features .feature:last-child {
    border-bottom: none;
}

.package-pricing {
    margin: 1.5rem 0;
    text-align: center;
}

.package-pricing .price {
    font-size: 2rem;
    font-weight: bold;
    color: #f0a611;
    margin-bottom: 0.5rem;
}

.package-pricing .price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.package-pricing .price .amount {
    font-size: 2.5rem;
}

.package-pricing .price .period {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: normal;
}

.annual-price {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Forms - Portal Specific */
.auth-form {
    max-width: 500px;
    margin: 2rem auto;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(240, 166, 17, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.auth-form h2 {
    color: #f0a611;
    font-family: 'PaybAck', sans-serif;
    margin-bottom: 1.5rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #e0e0e0;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(240, 166, 17, 0.2);
    color: #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f0a611;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 166, 17, 0.1);
    background: rgba(40, 40, 40, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-group small {
    color: #b0b0b0;
    font-size: 0.875rem;
    font-family: 'Montserrat', sans-serif;
}

/* Dashboard - Portal Specific */
.dashboard-section {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(240, 166, 17, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dashboard-section:hover {
    border-color: rgba(240, 166, 17, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.account-info p {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(240, 166, 17, 0.1);
    color: #e0e0e0;
}

.account-info p:last-child {
    border-bottom: none;
}

/* Tables - Portal Specific */
.orders-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: rgba(40, 40, 40, 0.4);
}

.orders-table th,
.admin-table th {
    background: rgba(240, 166, 17, 0.1);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(240, 166, 17, 0.3);
    color: #f0a611;
    vertical-align: middle;
}

.admin-table th:nth-child(1),
.admin-table th:nth-child(7),
.admin-table th:nth-child(8),
.admin-table th:nth-child(9),
.admin-table th:nth-child(10) {
    text-align: center;
}

.orders-table td,
.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(240, 166, 17, 0.1);
    color: #e0e0e0;
    vertical-align: middle;
}

.admin-table td:nth-child(1),
.admin-table td:nth-child(7),
.admin-table td:nth-child(8),
.admin-table td:nth-child(9),
.admin-table td:nth-child(10) {
    text-align: center;
}

.orders-table tr:hover,
.admin-table tr:hover {
    background: rgba(240, 166, 17, 0.05);
}

/* Status Badges - Portal Specific */
.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-paid,
.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-suspended {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-cancelled {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-inactive {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

/* Stats Grid - Portal Specific */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.stat-card:hover {
    border-color: rgba(240, 166, 17, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f0a611;
}

/* Alerts - Portal Specific */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.3);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

/* Package Summary - Portal Specific */
.package-summary {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(240, 166, 17, 0.2);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
}

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

.package-summary ul {
    list-style: none;
}

.package-summary li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(240, 166, 17, 0.1);
    color: #e0e0e0;
}

/* Portal pages use standard hero section styling from main site */

/* Order Form - Portal Specific */
.order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Portal Responsive Styles */
@media (max-width: 768px) {
    .portal-nav-container {
        padding: 0 1rem;
    }

    .portal-nav-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .portal-nav-item {
        flex-shrink: 0;
    }

    .portal-nav-link {
        padding: 1rem 1rem;
        font-size: 0.875rem;
    }

    .order-form {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orders-table,
    .admin-table {
        font-size: 0.875rem;
    }

    .orders-table th,
    .orders-table td,
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }
}

/* Admin Forms - Portal Specific */
.admin-form-container,
#create-package-form {
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid rgba(240, 166, 17, 0.2) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    margin: 2rem 0 !important;
}

/* Edit forms inside table cells */
.admin-table td.admin-form-container {
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid rgba(240, 166, 17, 0.2) !important;
    padding: 2rem !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.admin-form-container h3,
.admin-form-container h4,
#create-package-form h3 {
    color: #f0a611 !important;
    font-family: 'PaybAck', sans-serif !important;
    margin-bottom: 1.5rem !important;
}

.admin-actions {
    margin: 2rem 0;
}

.admin-actions .btn {
    margin-right: 1rem;
}

/* Table Actions Dropdown - Portal Specific */
.table-actions-dropdown {
    position: relative;
    display: inline-block;
}

.table-actions-dropdown .dropdown-toggle {
    position: relative;
    padding-right: 2.5rem !important;
    padding-left: 1rem !important;
    background: rgba(40, 40, 40, 0.8) !important;
    border: 1px solid rgba(240, 166, 17, 0.3) !important;
    color: #e0e0e0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.table-actions-dropdown .dropdown-toggle:hover {
    background: rgba(40, 40, 40, 0.95) !important;
    border-color: rgba(240, 166, 17, 0.5) !important;
    color: #f0a611 !important;
}

.table-actions-dropdown.active .dropdown-toggle {
    background: rgba(240, 166, 17, 0.1) !important;
    border-color: rgba(240, 166, 17, 0.5) !important;
    color: #f0a611 !important;
}

.table-actions-dropdown .dropdown-toggle i {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.table-actions-dropdown.active .dropdown-toggle i {
    transform: translateY(-50%) rotate(180deg);
}

.table-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(40, 40, 40, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(240, 166, 17, 0.3);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    animation: fadeInDown 0.3s ease;
    overflow: hidden;
    padding: 0.25rem 0;
}

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

.dropdown-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: #e0e0e0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(240, 166, 17, 0.1);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-action:first-child {
    margin-top: 0;
}

.dropdown-action:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.dropdown-action:hover {
    background: rgba(240, 166, 17, 0.15);
    color: #f0a611;
    padding-left: 1.25rem;
}

.dropdown-action:active {
    background: rgba(240, 166, 17, 0.2);
}

.dropdown-action i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dropdown-action-danger {
    color: #dc3545 !important;
}

.dropdown-action-danger:hover {
    background: rgba(220, 53, 69, 0.15) !important;
    color: #ff6b7a !important;
    padding-left: 1.25rem;
}

.dropdown-action-danger:active {
    background: rgba(220, 53, 69, 0.2) !important;
}

/* Ensure dropdown appears above table content */
.admin-table td {
    position: relative;
}

.table-actions-dropdown {
    z-index: 10;
}

@media (max-width: 768px) {
    .table-dropdown-content {
        right: auto;
        left: 0;
        min-width: 150px;
    }
    
    .table-actions-dropdown .dropdown-toggle {
        font-size: 0.8rem !important;
        padding: 0.5rem 2rem 0.5rem 0.75rem !important;
    }
}

/* Modal Styles - Portal Specific */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(40, 40, 40, 0.95);
    border: 1px solid rgba(240, 166, 17, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(240, 166, 17, 0.2);
}

.modal-header h3,
.modal-header h4 {
    color: #f0a611;
    font-family: 'PaybAck', sans-serif;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(240, 166, 17, 0.2);
    color: #f0a611;
    transform: rotate(90deg);
}

.modal-body {
    color: #e0e0e0;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(240, 166, 17, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 95vh;
    }
}

/* Group Toggle - Portal Specific */
.group-toggle-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
    padding: 1rem 0;
}

.group-toggle-btn {
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(240, 166, 17, 0.3);
    color: #e0e0e0;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.group-toggle-btn:hover {
    border-color: rgba(240, 166, 17, 0.6);
    background: rgba(40, 40, 40, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 166, 17, 0.2);
}

.group-toggle-btn.active {
    background: linear-gradient(135deg, #f0a611, #e0950f);
    border-color: #f0a611;
    color: #282828;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(240, 166, 17, 0.4);
}

.group-toggle-btn.active:hover {
    background: linear-gradient(135deg, #e0950f, #d0850d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 166, 17, 0.5);
}

.group-toggle-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(240, 166, 17, 0.1);
}

.group-toggle-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(240, 166, 17, 0.1);
    background: rgba(40, 40, 40, 0.8);
}

.package-group-container {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .group-toggle-container {
        gap: 0.75rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .group-toggle-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
