
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Syne Mono', monospace; 
    background-color: #000; 
    color: #39ff14; 
    line-height: 1.6; 
    overflow-x: hidden; 
    min-height: 100vh; 
    display: flex;
    flex-direction: column; 
}


.site-header {
    text-align: center;
    padding: 40px 20px; 
    margin-bottom: 20px;
    background-color: #1a1a1a; 
    border-bottom: 2px solid #39ff14; 
}

.site-header h1 {
    font-family: 'Rubik Dirt', cursive; 
    font-size: clamp(40px, 8vw, 96px); 
    text-transform: uppercase;
    letter-spacing: 0.15em; 
    text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14; 
    display: inline-block; 
    padding: 15px 30px;
    border: 3px solid #39ff14;
    border-radius: 15px;
    transition: all 0.3s ease-in-out; 
}

.site-header h1:hover {
    transform: scale(1.02); 
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14; 
}


nav {
    background-color: #222;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #39ff14;
    position: sticky; 
    top: 0;
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 255, 20, 0.3); 
}

nav ul {
    list-style: none; 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 20px; 
}

nav li {
    margin: 0; 
}

nav a {
    display: block; 
    padding: 12px 25px;
    text-decoration: none;
    color: #39ff14; 
    background-color: #000; 
    border: 2px solid #39ff14; 
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px; 
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

nav a:hover,
nav a:focus { 
    background-color: #39ff14; 
    color: #000;
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4); 
}


.main-content {
    flex-grow: 1; 
    padding: 40px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px; 
}

.content-section {
    background-color: #1a1a1a; 
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    text-align: left; 
}

.content-section h2 {
    font-size: clamp(29px, 4vw, 40px);
    color: #39ff14;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em; 
    text-transform: uppercase;
}

.content-section p {
   
    font-size: clamp(16px, 2.5vw, 18px); 
    margin-bottom: 24px;
    color: #EEE; /
}

.content-section img {
    width: 100%; 
    height: auto;
    max-width: 500px; 
    display: block; 
    margin: 20px auto; 
    border: 2px solid #39ff14;
    border-radius: 10px;
    transform: rotate(0deg); 
    object-fit: cover; 
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    background-color: #000;
    border: 3px solid #39ff14;
    border-radius: 10px;
    overflow: hidden; 
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /
}

/* Footer Styling */
footer {
    background-color: #111;
    color: #AAA;
    padding: 20px;
    margin-top: auto; 
    text-align: center;
    
    font-size: 14px;
    border-top: 1px solid #39ff14;
}

footer p {
    margin: 0;
    padding: 0;
    
    display: block; 
}




@media (min-width: 768px) {
    .main-content {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
        gap: 60px;
    }

    .content-section.full-width {
        grid-column: 1 / -1; 
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .content-section.full-width .text-content {
        flex: 1;
    }

    .content-section.full-width img {
        flex-shrink: 0;
        width: 40%;
        max-width: 400px; 
        margin: 0; 
    }

    
    .content-section.full-width p img { 
        float: right; 
        margin-left: 20px;
        margin-bottom: 10px;
        width: 40%; 
        max-width: 300px;
        transform: rotate(3deg); 
    }
}


@media (min-width: 1024px) {
    nav ul {
        gap: 30px; 
    }

    nav a {
       
        font-size: 19px;
        padding: 15px 35px;
    }

    .main-content {
        padding: 60px 40px;
    }

    .content-section p {
        
        font-size: 18px;
    }
}


