/* =========================
RIYIVZLA - PREMIUM STYLE
========================= */

:root {
    --bg: #050505;
    --card: rgba(255, 255, 255, 0.06);
    --text: #ffffff;
    --muted: #b5b5b5;
    --green: #19c37d;
    --green-dark: #0b5d3b;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ================= SOCIAL BAR ================= */

.social-bar {
    position: fixed;
    top: 40%;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-bar a {
    color: white;
    font-size: 18px;
    background: var(--card);
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.social-bar a:hover {
    background: var(--green);
    transform: scale(1.1);
}

/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-content * {
    text-align: center;
}

.logo {
    width: 120px;
    display: block;
    margin: 0 auto 25px auto;
}

.hero h1 {
    font-size: 60px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.slogan {
    max-width: 700px;
    margin: 10px auto 15px auto;
    font-size: 1.1rem;
}

.tagline {
    max-width: 800px;
    margin: 15px auto;
    color: var(--muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
}
/* ================= BUTTONS ================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    margin: 10px;
    transition: 0.3s;
    font-weight: bold;
}

.primary {
    background: var(--green);
    color: black;
}

.primary:hover {
    background: #22e08c;
    transform: scale(1.05);
}

.secondary {
    border: 1px solid var(--green);
    color: white;
}

.secondary:hover {
    background: var(--green-dark);
}

/* ================= STATS ================= */

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stats div {
    text-align: center;
}

.stats strong {
    font-size: 22px;
    display: block;
    color: var(--green);
}

/* ================= SECTIONS ================= */

section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 35px;
    margin-bottom: 30px;
}

/* ================= CARDS ================= */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: var(--card);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(25,195,125,0.15);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ================= SPOTIFY ================= */

.music iframe {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* ================= CONTACT ================= */

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
}

textarea {
    min-height: 120px;
}

/* ================= FOOTER ================= */

footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        width: 100px;
    }

    .social-bar {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
	
	.movie-preview{
		display:flex;
		gap:15px;
		margin-top:15px;
		overflow-x:auto;
		max-width:90%;
	}

	.movie-card{
		min-width:180px;
		background:#111;
		border:1px solid #00ff88;
		border-radius:10px;
		overflow:hidden;
		cursor:pointer;
		transition:.3s;
	}

	.movie-card:hover{
	transform:scale(1.05);
	}

	.movie-card img{
		width:100%;
		height:100px;
		object-fit:cover;
	}

	.movie-card span{
		display:block;
		padding:8px;
		color:white;
		font-size:14px;
	}

#gate{
	margin-top:20px;
}
    
}