* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
    background: #0f0f23;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.nav-brand .logo a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    text-shadow: inherit;
}

.nav-brand .logo a:hover {
    color: inherit;
    text-shadow: inherit;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.nav-links .promo-link {
    color: #00d4ff !important;
    position: relative;
    font-weight: 600;
}

.nav-links .promo-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 1px;
    animation: pulse-underline 2s infinite;
}

.nav-links .promo-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

@keyframes pulse-underline {

    0%,
    100% {
        opacity: 0.7;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/xcapenet.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline:hover {
    background: #00d4ff;
    color: #0f0f23;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.telegram-icon {
    font-size: 1.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    margin-bottom: 0.5rem;
    font-family: 'Inter', monospace;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.pricing-card.popular {
    border-color: #00d4ff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

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

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Status Hero Section */
.status-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.status-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.status-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Server Status Section */
.server-status {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.1);
}

.infrastructure-status {
    padding: 40px 0 80px;
    background: rgba(0, 0, 0, 0.1);
}

.server-status h2,
.infrastructure-status h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.status-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.status-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.server-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.server-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.offline {
    background: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.uptime {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Uptime Warning Banner */
.uptime-warning {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-align: center;
    border: 1px solid rgba(255, 149, 0, 0.3);
    box-shadow: 0 2px 10px rgba(255, 149, 0, 0.2);
}

.uptime-warning .warning-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.status-card.has-warning {
    border-color: rgba(255, 149, 0, 0.4);
}

.status-card.has-warning:hover {
    border-color: rgba(255, 149, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.2);
}

/* Global Uptime Warning */
.global-uptime-warning {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 149, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.global-uptime-warning .warning-icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.global-uptime-warning p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #00d4ff;
}

/* FAQ Section */
.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.faq-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.faq-item a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Cabinet Styles */
.cabinet-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.cabinet-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.cabinet-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.cabinet-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.cabinet-card h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.subscription-info .info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item .label {
    color: rgba(255, 255, 255, 0.7);
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.config-item:last-child {
    border-bottom: none;
}

.config-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.config-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.config-status {
    font-size: 0.875rem;
    color: #00ff88;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.usage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.usage-stats .stat-item {
    text-align: center;
}

.usage-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.usage-stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Login Styles */
.login-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.login-form h1 {
    color: #00d4ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.login-form p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.server-warning-item input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-full {
    width: 100%;
    margin-bottom: 1.5rem;
}

.login-help {
    color: rgba(255, 255, 255, 0.7);
}

.login-help a {
    color: #00d4ff;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

.login-divider {
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 212, 255, 0.3);
}

.login-divider span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

#telegram-login {
    text-align: center;
    margin-bottom: 1rem;
}

/* Promo Page Styles */
.promo-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.promo-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.promo-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.promo-dates {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    display: inline-block;
    margin-top: 1rem;
}

.promo-period {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-offers {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.offer-card.gift {
    border-color: rgba(255, 192, 203, 0.4);
}

.offer-card.referral {
    border-color: rgba(255, 215, 0, 0.4);
}

.offer-card.discount {
    border-color: rgba(144, 238, 144, 0.4);
}

.offer-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.offer-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.promo-highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.promo-code {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.old-bonus {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: 600;
}

.arrow {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: bold;
}

.new-bonus {
    color: #00ff88;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.promo-summary {
    padding: 60px 0;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.promo-summary h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.summary-list {
    max-width: 800px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.summary-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.promo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Promo Banner for Main Page */
.promo-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: glow 2s ease-in-out infinite alternate;
    margin-top: 70px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    }
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.promo-banner-content {
    position: relative;
    z-index: 1;
}

.promo-banner h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.promo-banner p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.promo-banner a:hover {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .uptime-warning {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .global-uptime-warning {
        margin: 0 1rem 2rem;
        padding: 0.8rem;
    }
    
    .global-uptime-warning p {
        font-size: 0.9rem;
    }

    .nav {
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-main-image {
        max-width: 300px;
    }

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

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

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

    .promo-header h1 {
        font-size: 2rem;
    }

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

    .offer-card {
        padding: 2rem;
    }

    .bonus-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }

    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .promo-banner h3 {
        font-size: 1rem;
    }

    .promo-banner p {
        font-size: 0.8rem;
    }
    
    .uptime-warning .warning-icon {
        font-size: 0.9rem;
    }
    
    .global-uptime-warning .warning-icon {
        font-size: 1.1rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.terms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.terms-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.terms-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.terms-document {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.terms-document * {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.terms-document h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.terms-document h2:first-child {
    margin-top: 0;
}

.terms-document p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.terms-document a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-document a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.terms-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .terms-document {
        padding: 2.5rem;
        margin: 0 1rem;
        max-width: none;
    }

    .terms-hero h1 {
        font-size: 2rem;
    }
}

/* Admin Page Styles */
.admin-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
}

.admin-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.admin-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.admin-card h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
}

.server-warning-item {
    margin-bottom: 1rem;
}

.server-warning-item label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.server-warning-item input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.admin-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-status {
    text-align: center;
}

.status-message {
    display: none;
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-message.error {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border-color: rgba(255, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-buttons {
        flex-direction: column;
    }
}

/* Error Page Styles */
.error-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    color: white;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.error-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }
    
    .error-content h1 {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}