* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-black: #0a0a0b;
    --dark-bg: #111113;
    --gray-dark: #1a1a1d;
    --gray-medium: #2d2d32;
    --gray-light: #3f3f46;
    --gold-primary: #FFD700;
    --gold-secondary: #D4AF37;
    --gold-dark: #B8860B;
    --gold-light: #FFED4E;
    --white: #ffffff;
    --success-green: #10b981;
    --error-red: #ef4444;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--deep-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background-color: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.nav-desktop {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--gold-dark);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: var(--dark-bg);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid var(--gold-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 11, 0.95) 0%, rgba(184, 134, 11, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--deep-black);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--deep-black);
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-light);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--gold-secondary);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.hero-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-square-banner {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--gold-dark);
    transition: var(--transition);
}

.hero-square-banner:hover {
    transform: scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.1);
}

/* Dashboard Section */
.dashboard-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-secondary), transparent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--white);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.status-intro {
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.status-intro p {
    color: #a1a1aa;
    font-size: 1.15rem;
    line-height: 1.7;
}

.status-intro strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.server-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.status-card {
    background: linear-gradient(145deg, var(--gray-dark) 0%, #141416 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--gray-medium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    opacity: 0;
    transition: var(--transition);
}

.status-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-secondary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.status-card:hover::before {
    opacity: 1;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.server-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--success-green);
    position: relative;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.status-text {
    font-weight: 600;
    color: var(--success-green);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.server-info {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.latency {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.latency span:last-child {
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* News Feed */
.news-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: linear-gradient(145deg, var(--gray-dark) 0%, #141416 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-secondary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.news-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--gold-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.read-more {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    align-self: flex-start;
}

.read-more:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* Deep Content Section */
.deep-content-section {
    background: var(--deep-black);
    padding: 100px 0;
    border-top: 1px solid var(--gray-medium);
    position: relative;
}

.deep-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.deep-authority-article {
    max-width: 850px;
    margin: 0 auto;
    color: #a1a1aa;
    line-height: 1.8;
}

.deep-authority-article h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin: 50px 0 25px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    font-weight: 700;
    border-left: 4px solid var(--gold-primary);
    padding-left: 20px;
}

.deep-authority-article p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.deep-authority-article strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.deep-authority-article em {
    color: var(--gold-secondary);
    font-style: italic;
}

.deep-authority-article > div {
    background: rgba(184, 134, 11, 0.05);
    border: 1px dashed var(--gold-dark);
    border-radius: 10px;
    padding: 25px;
    margin: 35px 0;
}

.deep-authority-article > div p {
    margin-bottom: 0;
    color: var(--white);
}

table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
    background: var(--gray-dark);
    border-radius: 10px;
    overflow: hidden;
    margin: 35px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

thead {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-secondary));
}

th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--deep-black);
}

tbody tr {
    border-bottom: 1px solid var(--gray-medium);
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    padding: 15px 20px;
}

tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

.faq-accordion div {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--gray-dark);
    border-radius: 10px;
    border-left: 4px solid var(--gold-secondary);
}

.faq-accordion h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--deep-black) 100%);
    padding: 60px 0;
    border-top: 1px solid var(--gold-dark);
    margin-top: 20px;
}

.cta-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: #a1a1aa;
    margin-bottom: 35px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section a {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    margin: 0 10px;
    min-width: 200px;
    text-align: center;
}

.cta-section a:first-child {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--deep-black);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cta-section a:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-light);
}

.cta-section a:last-child {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-secondary);
}

.cta-section a:last-child:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--gold-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #71717a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-links a[style*="color: #007bff"] {
    color: var(--gold-primary) !important;
    font-weight: 700;
}

.footer-links a[style*="color: #007bff"]:hover {
    color: var(--gold-light) !important;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-badges > div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--success-green);
    font-size: 0.9rem;
}

.trust-badges span:first-child {
    background: rgba(16, 185, 129, 0.15);
    padding: 5px 8px;
    border-radius: 5px;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}

.trust-badges span:last-child {
    color: #a1a1aa;
    flex: 1;
}

.copyright {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-medium);
    text-align: center;
}

.copyright p {
    color: #71717a;
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.copyright strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.copyright p:last-child {
    color: rgba(176, 176, 177, 0.5);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-square-banner {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .server-status-grid,
    .news-feed {
        grid-template-columns: 1fr;
    }
    
    .dashboard-section {
        padding: 70px 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cta-section a {
        display: block;
        margin: 0 auto 15px;
        max-width: 300px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .deep-authority-article h2 {
        font-size: 1.8rem;
    }
    
    .logo-container {
        width: 150px;
        height: 40px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-card,
.news-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.status-card:nth-child(2) {
    animation-delay: 0.1s;
}

.status-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .cta-section,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero,
    .dashboard-section,
    .deep-content-section,
    footer {
        padding: 20px 0;
    }
}