
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Default Desktop Background */
    /* background-image: url('../../baazy/pics/psycage_land.jpg'); */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps bg fixed during scroll */
    background-size: cover; /* Ensures full coverage */
    background-color: #050510; /* Fallback color */
    color: #fff;
    overflow-x: hidden;

    text-align: center;
    /*
    margin: 0;
    padding: 8px;
    font-family: 'Orbitron', sans-serif;
    color: #E0E0E0;
    font-size:3vw;
    background-color: black;
    */
}

.bgImg{
    /*background-image:url('../../baazy/pics/largeLogo.webp');*/
    background-size: 100% auto;
    background-repeat: no-repeat;
    position:relative;
}
@media screen and (max-width: 800px) {
    .ifLandscape{ display:none; }
    .ifPortrate{ display:block; }
    .bgImg{
        position:absolute; top:5%; left:5%; height:60%; width:90%;
    }
}
@media screen and (min-width: 801px) {
    .ifLandscape{ display:block; }
    .ifPortrate{ display:none; }
    .bgImg{
        position:absolute; top:5%; left:20%; height:70%; width:60%;
    }
}

/* عناوین */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    text-shadow: 0 0 10px #00f, 0 0 20px #0ff;
    margin: 1em 0 0.5em 0;
    font-weight: 900;
}

/* پاراگراف */
p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #D0D0D0;
    text-shadow: 0 0 3px #0ff;
}

/* لینک‌ها */
a {
    color: #00FFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: #FF00FF;
    text-shadow: 0 0 8px #FF00FF, 0 0 12px #00FFFF;
}

/* دکمه‌ها */
button, input[type="button"], input[type="submit"], input[type="number"] {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    padding: 0.8em 2em;
    margin: 0.5em;
    border: 2px solid #00FFFF;
    border-radius: 8px;
    background: linear-gradient(145deg, #0ff, #00f);
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px #00f, 0 0 12px #0ff;
}
button:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="number"]:hover {
    background: linear-gradient(145deg, #ff00ff, #ff0);
    border-color: #ff0;
    box-shadow: 0 0 12px #ff0, 0 0 18px #ff00ff;
    transform: scale(1.05);
}

/* فیلدهای فرم */
input[type="text"], input[type="password"], input[type="number"], textarea, select {
    font-family: 'Orbitron', sans-serif;
    padding: 0.6em;
    margin: 0.5em 0;
    border-radius: 6px;
    border: 2px solid #0ff;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    box-shadow: 0 0 5px #0ff inset;
    transition: all 0.3s ease-in-out;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
    border-color: #ff0;
    box-shadow: 0 0 8px #ff0 inset, 0 0 12px #0ff;
    outline: none;
}

/* کارت‌ها یا پنل‌ها */
.card {
    background: rgba(0,0,0,0.65);
    border: 2px solid #00FFFF;
    border-radius: 12px;
    padding: 1em 1.5em;
    margin: 1em 0;
    box-shadow: 0 0 10px #00f, 0 0 15px #0ff;
    transition: all 0.3s ease-in-out;
}
.card:hover {
    border-color: #ff0;
    box-shadow: 0 0 15px #ff0, 0 0 20px #ff00ff;
    transform: translateY(-3px);
}

/* جداول */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}
th, td {
    padding: 0.8em;
    border: 1px solid #0ff;
    text-align: center;
}
th {
    background-color: rgba(0,0,255,0.3);
    color: #fff;
}
td {
    background-color: rgba(0,0,0,0.4);
}

/* لیست‌ها */
ul, ol {
    margin: 1em 0 1em 2em;
    color: #D0D0D0;
}
ul li::before {
    content: "• ";
    color: #0ff;
}

/* پیغام‌ها یا alertها */
.alert {
    padding: 1em;
    border-radius: 8px;
    margin: 1em 0;
    background: linear-gradient(120deg, #ff0, #f0f);
    color: #000;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 10px #ff0, 0 0 15px #f0f;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 1em;
    font-size: 0.9rem;
    color: #aaa;
    text-shadow: 0 0 2px #00f;
}

/* ویژه: لینک‌های پول‌ساز (call to action) */
.money-btn {
    background: linear-gradient(145deg, #FFD700, #FF8C00);
    border: 2px solid #FFD700;
    color: #000;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 1em 2em;
    box-shadow: 0 0 12px #FFD700, 0 0 18px #FF8C00;
}
.money-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #FFD700, 0 0 25px #FF8C00, 0 0 30px #FFF;
}

/* Mobile Media Query (width < 768px) */
@media screen and (max-width: 768px) {
    body {
        /*background-image: url('../../baazy/pics/psycage_port.jpg');*/
    }
}

/* Hero Section (First 100vh view) */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical center */
    align-items: center; /* Horizontal center */
    position: relative;
}

/* Logo Styling */
.logo-container {
    position: absolute;
    top: 40px;
    text-align: center;
}

.logo-text {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    /* Neon Blue Glow Effect */
    text-shadow: 0 0 5px #00c3ff, 0 0 15px #00c3ff, 0 0 30px #0055ff;
    text-transform: uppercase;
}

/* Login Box Styling */
.login-box {
    background: rgba(5, 10, 30, 0.7); /* Darker, glassy background */
    backdrop-filter: blur(15px); /* Blurs the background behind the box */
    padding: 45px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 195, 255, 0.4); /* Subtle blue border */
    box-shadow: 0 0 30px rgba(0, 10, 20, 0.8), inset 0 0 20px rgba(0, 195, 255, 0.1);
    width: 90%;
    max-width: 420px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-box h2 {
     margin-bottom: 10px;
     color: #e0e0ff;
     letter-spacing: 1px;
     text-transform: uppercase;
     font-size: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px; /* Rounder inputs */
    border: 2px solid rgba(0, 195, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-field:focus {
    border-color: #00c3ff;
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.login-btn {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    /* Cyberpunk Gradient */
    background: linear-gradient(90deg, #0033cc, #00c3ff);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 195, 255, 0.6);
    background: linear-gradient(90deg, #0044ee, #33d6ff);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    animation: bounce 2.5s infinite;
    opacity: 0.6;
    font-size: 14px;
    letter-spacing: 1px;
    color: #00c3ff;
    text-transform: uppercase;
}

/* Video Section (Below the fold) */
.video-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    /* RESTORED: Transparent fade to black */
    background: linear-gradient(to top, #000000, transparent);
}

.video-card {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    /* CRITICAL FOR CROPPING: Hide overflow */
    overflow: hidden; 
    border: 3px solid #00c3ff;
    box-shadow: 0 0 50px rgba(0, 195, 255, 0.3);
    background: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    height: auto;
    display: block;
    /* CRITICAL FOR CROPPING 10% TOP & BOTTOM:
       Scale Y up by 1.25 (which is 100% / 80% visible area).
       This pushes 10% off the top edge and 10% off the bottom edge. */
    transform: scaleY(1.25);
    transform-origin: center center;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}


