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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('mmorpg-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -2;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.9));
    z-index: -1;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 1.5rem 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

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

.btn-primary {
    background: #dc2626;
    color: #fff;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    margin: 4rem 0;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 4px;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 0 0 20px rgba(255, 215, 0, 0.3);
    }
    to {
        text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.125rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
    margin: 3rem 0;
    width: 100%;
    max-width: 800px;
}

.countdown-container {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.countdown-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.time-unit {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.time-value {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.time-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Schedule Section */
.schedule-section {
    margin: 3rem 0;
    width: 100%;
    max-width: 1000px;
}

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

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

.beta-card {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(30, 58, 138, 0.2);
}

.grand-card {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(180, 83, 9, 0.2);
}

.schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beta-card .schedule-title {
    color: #60a5fa;
}

.grand-card .schedule-title {
    color: #ffd700;
}

.schedule-details {
    space-y: 1rem;
}

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

.schedule-label {
    color: #ccc;
}

.schedule-value {
    color: #fff;
    font-weight: 600;
}

.schedule-value.confirmed {
    color: #10b981;
}

.schedule-note {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.beta-card .schedule-note {
    background: rgba(59, 130, 246, 0.2);
    color: #bfdbfe;
}

.grand-card .schedule-note {
    background: rgba(255, 215, 0, 0.2);
    color: #fef3c7;
}

/* Features Section */
.features-section {
    margin: 4rem 0;
    width: 100%;
    max-width: 1000px;
}

.features-container {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Characters Section */
.characters-section {
    margin: 4rem 0;
    width: 100%;
    max-width: 800px;
}

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

.character-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.character-card:hover {
    border-color: #ffd700;
    transform: scale(1.02);
}

.character-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.character-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
}

.character-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.character-description {
    color: #ccc;
    font-size: 0.875rem;
}

/* Community Section */
.community-section {
    margin: 4rem 0;
    width: 100%;
    max-width: 1000px;
}

.community-container {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
}

.community-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.community-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.community-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.discord-card {
    border-color: rgba(114, 137, 218, 0.3);
}

.discord-card:hover {
    border-color: #7289da;
    box-shadow: 0 8px 32px rgba(114, 137, 218, 0.3);
}

.vote-card {
    border-color: rgba(255, 215, 0, 0.3);
}

.vote-card:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.forum-card {
    border-color: rgba(34, 197, 94, 0.3);
}

.forum-card:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.discord-card .community-icon {
    color: #7289da;
}

.vote-card .community-icon {
    color: #ffd700;
}

.forum-card .community-icon {
    color: #22c55e;
}

.community-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.community-card-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.btn-discord {
    background: #7289da;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #5b6eae;
    transform: translateY(-2px);
}

.btn-vote {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-vote:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.btn-forum {
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-forum:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Server Info Section */
.server-info-section {
    margin: 4rem 0;
    width: 100%;
    max-width: 800px;
}

.server-info-container {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
}

.server-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.info-label {
    color: #ccc;
    font-weight: 500;
}

.info-value {
    color: #fff;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    color: #999;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,0.9);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    margin-top: 4rem;
    width: 100%;
}

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

.footer-text {
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-subtext {
    color: #666;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
    }
    
    .server-info-grid {
        grid-template-columns: 1fr;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 1rem;
    }
    
    .countdown-container,
    .features-container,
    .server-info-container,
    .community-container {
        padding: 1.5rem;
    }
    
    .schedule-card {
        padding: 1.5rem;
    }
    
    .time-unit {
        padding: 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .community-card {
        padding: 1.5rem;
    }
}

