/*
Theme Name: ramgytheme
Theme URI: https://ramgy.com/
Author: Ramgy
Description: Estructura profesional para Ramgy Platform - Landing Page Oficial.
Version: 1.1
*/

:root {
    --deep-black: #050505;
    --electric-blue: #007bff;
    --glow-gold: #f0ba0a;
    --glass-white: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--deep-black);
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    z-index: -1;
}

.main-frame {
	display: flex;
    flex-direction: column;
    align-items: center; 
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.language-dock {
    background: rgba(0,0,0,0.6);
    padding: 20px 20px;
    border-radius: 50px;
    border: 1px solid var(--electric-blue);
    display: inline-flex;
    gap: 12px;
    margin-bottom: 0 auto 30px auto;
    transition: transform 0.3s;
	justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%; 
}

.language-dock:hover { transform: scale(1.05); }

.flag-link img {
    border-radius: 3px;
    filter: grayscale(40%);
    transition: 0.3s;
}

.flag-link:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--electric-blue);
}

.btn-update {
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    padding: 15px;
    border: 2px solid var(--glow-gold);
    border-radius: 15px;
    transition: 0.4s;
    color: inherit;
}

.btn-update:hover {
    background: rgba(240, 186, 10, 0.1);
    box-shadow: 0 0 30px rgba(240, 186, 10, 0.3);
    color: inherit;
}

.video-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

#myVideo {
    max-width: 100%;
    height: auto;
    border-radius: 23px;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
}

marquee {
    font-family: 'Unbounded', sans-serif;
    color: var(--glow-gold);
    letter-spacing: 2px;
}

.footer-counter {
    margin-top: 50px;
    opacity: 0.6;
}

a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .main-frame {
        padding: 20px;
        margin-top: 10px;
    }
    
    .language-dock {
        padding: 10px;
        gap: 8px;
        border-radius: 25px; 
    }

    .flag-link img {
        width: 27px; 
        height: 20px;
    }

    h2 {
        font-size: 18px !important; 
    }
}