        /* Hero Section Styling */
        .hero {
            position: relative;
            background: transparent;
            color: var(--text-color);
            padding: 80px 0;
            text-align: center;
            overflow: hidden;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .hero-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .hero-text {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 0.5rem;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--highlight-color);
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
            font-family: 'Oswald', sans-serif;
        }
        
        .hero h2 {
            font-size: 2rem;
            margin: 10px 0 20px;
            font-weight: 400;
            text-shadow: 0 0 10px rgba(0,0,0,0.8);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border: 2px solid #600000;
            font-size: 1.1rem;
            padding: 12px 25px;
        }
        
        .btn-secondary {
            background-color: rgba(255,255,255,0.1);
            border: 2px solid var(--highlight-color);
            color: var(--highlight-color);
            font-size: 1.1rem;
            padding: 12px 25px;
        }
        
        .btn-secondary:hover {
            background-color: var(--highlight-color);
            color: #000;
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .feature-card {
            background-color: rgba(0,0,0,0.6);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 20px;
            width: 250px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-color: var(--highlight-color);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: var(--highlight-color);
            margin-bottom: 15px;
        }
        
        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .feature-card p {
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Server Status */
        .server-status {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        
        .server-status p {
            margin: 0;
            text-align: center;
        }
        
        .server-status i {
            color: var(--highlight-color);
            margin-right: 5px;
        }
        
        .status-offline {
            color: #ff4d4d;
            font-weight: bold;
        }
        
        /* Main Content Sections */
        .main-content {
            padding: 40px 0;
        }
        
        .content-section {
            margin-bottom: 60px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--highlight-color);
            text-transform: uppercase;
            margin: 0 0 15px;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
        }
        
        .section-divider {
            height: 3px;
            width: 80px;
            background-color: var(--accent-color);
            margin: 0 auto;
        }
        
        /* Announcement Section */
        .announcement-section {
            background-color: rgba(42, 48, 56, 0.7);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .announcement-content {
            text-align: center;
        }
        
        .announcement-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .countdown-container {
            margin: 30px 0;
        }
        
        .countdown-container h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--highlight-color);
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .countdown-item {
            background-color: var(--primary-color);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 15px;
            min-width: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .countdown-item span:first-child {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--highlight-color);
            font-family: 'Oswald', sans-serif;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-box {
            background-color: rgba(42, 48, 56, 0.7);
            border-radius: 8px;
            padding: 30px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-color: var(--highlight-color);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--highlight-color);
            min-width: 60px;
            text-align: center;
        }
        
        .feature-content h3 {
            font-size: 1.3rem;
            margin: 0 0 15px;
            color: var(--text-color);
        }
        
        .feature-content p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Modal Styling */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .modal-content {
            background-color: var(--primary-color);
            margin: 50px auto;
            padding: 30px;
            border-radius: 8px;
            max-width: 600px;
            position: relative;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 25px rgba(0,0,0,0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-color);
        }
        
        .modal-close:hover {
            color: var(--highlight-color);
        }
        
        .modal h2 {
            color: var(--highlight-color);
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group select {
            width: 100%;
            padding: 12px;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            background-color: rgba(255,255,255,0.1);
            color: var(--text-color);
        }
        
        .form-group.checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-group.checkbox label {
            margin-bottom: 0;
        }
        
        .form-group.checkbox input {
            margin: 0;
        }
        
        .form-group.required label:after {
            content: " *";
            color: var(--accent-color);
        }
        
        .form-group a {
            color: var(--highlight-color);
            text-decoration: none;
        }
        
        .form-group a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-card {
                width: 100%;
                max-width: 350px;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .countdown-timer {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .countdown-item {
                min-width: 80px;
            }
            
            .feature-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .feature-icon {
                margin-bottom: 15px;
            }
        }
        
        /* Two-Column Grid Layout */
        .two-column-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 992px) {
            .two-column-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* News Section */
        .news-section {
            background-color: rgba(42, 48, 56, 0.7);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .news-content {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-item {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-date {
            color: var(--highlight-color);
            font-size: 0.9rem;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .news-item h3 {
            font-size: 1.2rem;
            margin: 0 0 10px;
            color: var(--text-color);
        }
        
        .news-item p {
            margin: 0 0 10px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .news-link {
            color: var(--highlight-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .news-link:hover {
            transform: translateX(5px);
        }
        
        .news-link i {
            font-size: 0.8rem;
            margin-left: 5px;
        }
        
        /* Game World Section Styling */
        .game-world-section {
            background-color: rgba(42, 48, 56, 0.7);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .world-features {
            margin-top: 30px;
        }
        
        .world-feature-row {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .world-feature-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            border: 1px solid var(--border-color);
        }
        
        .world-feature-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .world-feature-content {
            flex: 1;
        }
        
        .world-feature-content h3 {
            font-size: 1.3rem;
            margin: 0 0 15px;
            color: var(--highlight-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .world-feature-content h3:not(:first-child) {
            margin-top: 25px;
        }
        
        .world-feature-content p {
            margin: 0 0 15px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Mechanics Section Styling */
        .mechanics-section {
            margin-top: 60px;
        }
        
        .mechanics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .mechanic-card {
            background-color: rgba(42, 48, 56, 0.7);
            border-radius: 8px;
            padding: 25px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .mechanic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border-color: var(--highlight-color);
        }
        
        .mechanic-icon {
            font-size: 2.5rem;
            color: var(--highlight-color);
            margin-bottom: 15px;
        }
        
        .mechanic-card h3 {
            font-size: 1.3rem;
            margin: 0 0 15px;
            color: var(--text-color);
        }
        
        .mechanic-card p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Resource Section Styling */
        .resource-section {
            margin-top: 60px;
            background-color: rgba(42, 48, 56, 0.7);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .resource-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        
        .resource-text h3 {
            font-size: 1.4rem;
            margin: 0 0 15px;
            color: var(--highlight-color);
        }
        
        .resource-text p {
            margin: 0 0 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .resource-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 25px 0;
        }
        
        .resource-category h4 {
            font-size: 1.1rem;
            margin: 0 0 15px;
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .resource-category ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .resource-category li {
            margin-bottom: 8px;
            font-size: 0.95rem;
            position: relative;
            padding-left: 15px;
        }
        
        .resource-category li:before {
            content: '•';
            color: var(--highlight-color);
            position: absolute;
            left: 0;
        }
        
        .resource-name {
            color: var(--highlight-color);
            font-weight: 500;
        }
        
        .resource-buildings {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .building-card {
            background-color: rgba(26, 30, 36, 0.7);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .building-card:hover {
            transform: translateY(-5px);
            border-color: var(--highlight-color);
        }
        
        .building-icon {
            font-size: 2rem;
            color: var(--highlight-color);
            margin-bottom: 10px;
        }
        
        .building-card h4 {
            font-size: 1.1rem;
            margin: 0 0 10px;
            color: var(--text-color);
        }
        
        .building-card p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        @media (max-width: 992px) {
            .world-feature-row {
                flex-direction: column;
            }
            
            .resource-content,
            .resource-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .resource-buildings {
                grid-template-columns: 1fr;
            }
        }