@font-face {
    font-family: 'Press Start 2P';
    src: url('font/PressStart2P-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background: #000; /* Fallback black background */
    color: #fff; /* White text color */
}

.video-container {

    position: fixed;
    background-color: black;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.video-container video {
    
    width: 100%;
    height: 145vh;
    object-fit: cover;
    margin-top: -22.5vh;
}


.container {
    position: relative;
    background-color:  black;
    /*width: 100%;*/
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center;
    margin-bottom: -2px;
}


.container.main{
    background: linear-gradient(to bottom, transparent, black 100%);
    margin-bottom: -2px;
}

.content form{
    width: 100%;
    text-align: center;

    input[type = "text"]{
        font: inherit;
        font-size: 15px;
        height: 40px;
        padding: 0px 20px ;
        border-radius:  25px;
        border: 0;
        background-color: rgba(255, 255, 255, 0.274);
        float: left;
        max-width: 400px;
        width: 80%;
        margin-bottom: 10px;
        color: white;

    }

    .Subscribe{
        font: inherit;
        font-size: 15px;
        height: 40px;
        width: 150px;
        padding: 0px 20px ;
        border-radius:  25px;
        border: 0;
        float: left;
    }
    
    .Subscribe:hover{
        background-color: rgba(208, 253, 255, 0.753) !important;

    }
 

    @media (min-width: 441px) {

        input[type = "button"]{
            margin-left: -152px;
            margin-top: 2px;
            height: 36px;
        }
        
    }

    @media (max-width: 440px) {

        input[type = "text"]{
            width: calc(100% - 40px);
        }

        input[type = "button"]{
            width: calc(100%);
        }
        
    }

}





header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Full-width fixed header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px; /* Padding for the content inside the header */
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent background for better readability */
    z-index: 100; /* Ensures header stays above other elements */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.logo {
    width: 50px; /* Larger logo */
    height: auto;
}

.social-icons {
    display: flex;
    gap: 25px; /* Adjusted spacing between icons */
}

.social-icons img {
    width: 30px; /* Slightly larger icons */ 
    border-radius: 100px;
}


.insta:hover{
    background: linear-gradient(45deg, #ffdf00, #ff1000, #cc00ff);
}

.x:hover{
    background-color: #3c858b;
}

.yt:hover{
    background-color: red;
}


.content {
    margin: 0; /* Remove default margin for centering */
}

.content h1 {
    font-family: 'Press Start 2P', monospace;
    font-size: 5vh;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #FFF1AC; /* Color for AAYAAM */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* Optional shadow for better contrast */
}


.other_content .content h1
{
    font-size: 2vh;
}

.other_content 
{    
    text-align: left    ;
    font-size: 2vh;

    .content{
        max-width: 1000px;
        padding: 20px;
    }
}



.content p {
    font-size: 2vh; /* Default font size */
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 40px; /* Matches the spacing between buttons */
}

.buttons button {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    padding: 10px 40px;
    background: none;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
}

.buttons button:hover {
    background: #fff;
    color: #000;
    transition: all 0.3s ease;
}

/* Responsive Design - Mobile View */
@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Add padding for mobile view */
    }

    .content h1 {
        font-size: 2.5rem; /* Adjust AAYAAM text size for mobile */
    }

    .content p {
        font-size: 1rem; /* Adjust subtitle size */
    }

    .buttons {
        flex-direction: column; /* Stack buttons on smaller screens */
        gap: 20px; /* Adjust spacing for stacked layout */
    }

    .buttons button {
        width: 100%; /* Full-width buttons */
        max-width: 300px; /* Limit button width for uniformity */
        margin: 0 auto; /* Center align buttons */
        font-size: 1rem;
    }

    .social-icons img {
        width: 25px; /* Scale down icons for mobile */
    }
    header {
        padding: 10px 20px; /* Adjust header padding for mobile */
    }
}

/* Responsive Design - Mobile View */
@media (max-width: 440px) {

    .container{
        min-height: 110vh;

    }

}

@media (max-width: 1000px) {

    .content{
        max-width: 700px !important;
    }

}


.screenshots .Main .content{
    max-width: 100%;

}

.btn_image{
    height: 25px;
    margin-bottom: -6px;
}


.inactive{
    color: gray;
}

.disabled{
    color: gray !important;
    border-color: gray !important;
    img{
        opacity: 0.5;
    }
}

.content_flex{

    padding: 20px;
    display: inline-flex;
    align-content: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.col-100{
    width: calc(100% - 10px);
}

.col-70{
    width: calc(70% - 10px);
    margin: 5px;
}

.col-60{
    width: calc(60% - 10px);
    margin: 5px;
}

.col-50{
    width: calc(50% - 10px);
    min-height: 10px;
    margin: 5px;
}

.col-40{
    width: calc(40% - 10px);
    margin: 5px;
}

.col-30{
    width: calc(30% - 10px);
    margin: 5px;
}



@media (max-width: 767px){
    .col-50, .col-40, .col-30, .col-60, .col-70{
        width: calc(100% - 10px);
    }

    
}



footer{
    min-height: 0px !important;
    margin-bottom: 60px;
    text-align: center;
    font-size: 0.8rem;
    color:gray;
    width: calc(100% - 40px)

}



#error{

    display: none; position: absolute; float:left; margin: 30px 0 0 10px; font-size: 1rem;

}


@media (max-width:441px) {
    
    #error{
        margin: 0;
        margin-top: 90px;
        width: calc(100% - 70px);
        font-size: 0.85rem;
    }

}