:root {
    --primary-color: #fdedce;
    --dark-bg: #121212;
    --text-color: #e0e0e0;
    --discord-color: #5865F2;
    --discord-hover: #4752c4;
    --star-citizen-color: #f0b945;
    --star-citizen-hover: #d9a73a;
}

@media (max-width:350px) {
    h1{
        font-size:1.5rem !important;
        text-wrap: wrap !important;
    }
    .tagline{
        font-size: .875rem !important;
    }
}
@media (min-width: 350px) and (max-width: 800px) {
    h1{
        font-size: 2rem !important;
        text-wrap: wrap !important;
    }
}
@media (max-width:800px){
    body {
        overflow-y: auto !important;
    }

    .main-content {
        height: auto !important;
    }

    .logo {
        width: 200px !important;
        max-width: 100% !important;
    }

    .copyright {
        transform: none !important;
        position: static !important;
    }

    
}
.copyright{
    width:100%;
    text-align: center;
    max-width: 100%;;
    position:absolute;
    left:50%;
    bottom:0px;
    transform:translateX(-50%);
    font-size: 0.8rem; color: var(--text-color); margin-bottom: 15px;}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono';
    letter-spacing: 0px;
}
li,p{
    font-family:monospace;
}
h1 {
    text-wrap:nowrap;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.arma3-btn {
    background-color: #556b2f;
    color: white;
}

.arma3-btn:hover {
    background-color: #6b8e23;
    transform: translateY(-3px);
}
.btn {
    display: inline-flex;
    font-family:monospace;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: .875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.about-button {

&:after{
    display: block;
    position: absolute;
    content: "";
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    top: -6px;
    left: -6px;
    border-radius: 50%;
    border:1px solid var(--primary-color);
}

    font-family:monospace;
    position: absolute;
    font-size: 1.5rem;
    top: 20px;
    right: 20px;
    background:transparent;
    color:var(--primary-color);

    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    z-index: 100;
    display: inline-flex
    ;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    z-index: 1001;
}
body, html {
    height: 100%;
    overflow: hidden;
    background-color: black;
    color: var(--text-color);
}

/* Intro video container */
#intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease-out;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main content */
.main-content {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Content overlay */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100%;
    padding: 30px;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(179, 145, 88, 0.5));
}


.tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-color);
    flex-direction:column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.discord-btn {
    background-color: var(--discord-color);
    color: white;
}

.discord-btn:hover {
    background-color: var(--discord-hover);
    transform: translateY(-3px);
}

.star-citizen-btn {
    background-color: var(--star-citizen-color);
    color: black;
}

.star-citizen-btn:hover {
    background-color: var(--star-citizen-hover);
    transform: translateY(-3px);
}

.btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}

