* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f7fa;
  overflow-x: hidden;
  color: white;
}

::selection {
  background: #ffcc00;
  color: #111;
}

/* ================= PREMIUM NAVBAR ULTRA CLEAN ================= */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 1rem 6%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000;

    background: rgba(4, 20, 29, 0.75);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s ease;
}

/* LOGO */
.logo{
    width: 58px;
    height: auto;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover{
    transform: scale(1.05);
}

/* NAVBAR DESKTOP */
.navbar{
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* LINKS GROUP */
.nav-link{
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* LINKS STYLE */
.nav-link a{
    position: relative;
    text-decoration: none;

    color: #fff;
    font-size: 1rem;
    font-weight: 500;

    transition: 0.3s ease;
}

/* underline animation premium */
.nav-link a::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 0%;
    height: 2px;
    transform: translateX(-50%);

    background: #ffcc00;
    border-radius: 10px;

    transition: 0.3s ease;
}

.nav-link a:hover{
    color: #ffcc00;
}

.nav-link a:hover::after{
    width: 100%;
}

/* LANGUAGE SELECT */
.lang-dropdown select{
    padding: 10px 14px;

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.06);
    color: #fff;

    outline: none;
    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.lang-dropdown select:hover{
    border-color: #ffcc00;
    transform: translateY(-2px);
}

/* AUTH BUTTONS */
.auth-buttons{
    display: flex;
    gap: 10px;
}

.login, .register {
  display: inline-block !important;
}

/* BUTTON BASE */
.btn{
    padding: 10px 18px;
    border-radius: 12px;

    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

/* LOGIN */
.login{
    border: 1px solid #ffcc00;
    color: #ffcc00;
    background: transparent;
}

.login:hover{
    background: #ffcc00;
    color: #04141d;
}

/* REGISTER */
.register{
    background: #ffcc00;
    color: #04141d;
}

.register:hover{
    transform: translateY(-2px);
}

/* ================= HAMBURGER ================= */

#check{
    display: none;
}

.icons{
    display: none;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/* ================= MOBILE ================= */

@media (max-width: 768px){

    .icons{
        display: inline-flex;
    }

    /* MENU MOBILE FIX PREMIUM */
    .navbar{
        position: absolute;
        top: 100%;
        left: 50%;
        width: min(92%, 20px);

        padding: 2rem;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 1.4rem;

        border-radius: 24px;

        background: rgba(4,20,29,0.95);
        backdrop-filter: blur(30px);

        border: 1px solid rgba(255,255,255,0.08);

        opacity: 0;
        visibility: hidden;

        transition: 0.4s ease;

        box-sizing: border-box;
    }

    /* OPEN MENU */
    #check:checked ~ .navbar{
        opacity: 1;
        visibility: visible;
    }

    /* LINKS */
    .nav-link{
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
    }

    .nav-link a{
        text-align: center;
        width: 100%;
        font-size: 1.05rem;
    }

    /* LANG */
    .lang-dropdown select{
        width: 100%;
        max-width: 260px;
    }

    /* BUTTONS */
    .auth-buttons{
        flex-direction: column;
        width: 100%;
    }

    .auth-buttons .btn{
        width: 100%;
        text-align: center;
    }

    /* ICONS FIX */
    #close-icon{
        display: none;
    }

    #check:checked ~ .icons #menu-icon{
        display: none;
    }

    #check:checked ~ .icons #close-icon{
        display: block;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px){

    .header{
        padding: 1rem 4%;
    }

    .logo{
        width: 52px;
    }

    .navbar{
        width: 95%;
    }
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.65)),
    url('images/Hero-imggg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
  rgba(1,98,136,0.85),
  rgba(0,0,0,0.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  color: #ffcc00;
  padding: 12px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-txt h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-txt h1 span {
  color: #ffcc00;
}

.hero-txt p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.4s ease;
}

.btn-primary {
  background: #ffcc00;
  color: #111;
  box-shadow: 0 10px 30px rgba(255,204,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  transform: translateY(-5px);
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blur-1 {
  width: 300px;
  height: 300px;
  background: rgba(255,204,0,0.2);
  top: -50px;
  right: -50px;
}

.blur-2 {
  width: 250px;
  height: 250px;
  background: rgba(1,98,136,0.35);
  bottom: -80px;
  left: -80px;
}


/* ================= STATS SECTION PREMIUM ================= */

.stats-section{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    padding: 80px 7%;
    background: linear-gradient(135deg, #04141d, #062a3a);

    position: relative;
    overflow: hidden;
}

/* effet subtil de lumière */
.stats-section::before{
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;

    width: 300px;
    height: 300px;

    background: rgba(255,204,0,0.15);
    filter: blur(120px);
    border-radius: 50%;
}

.stats-section::after{
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;

    width: 300px;
    height: 300px;

    background: rgba(0,200,255,0.12);
    filter: blur(140px);
    border-radius: 50%;
}

/* CARD */
.stats-card{
    position: relative;
    z-index: 2;

    padding: 40px 20px;
    text-align: center;

    border-radius: 18px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;

    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* hover premium */
.stats-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,204,0,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* NUMBER */
.counter{
    font-size: 3rem;
    font-weight: 700;

    color: #ffcc00;

    margin-bottom: 10px;

    letter-spacing: 1px;
}

/* TEXT */
.stats-card p{
    font-size: 1rem;
    color: #e5e7eb;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px){
    .stats-section{
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 5%;
    }
}

@media (max-width: 600px){
    .stats-section{
        grid-template-columns: 1fr;
        padding: 50px 5%;
    }

    .counter{
        font-size: 2.5rem;
    }
}

/* ================= COURS ================= */

.cours-container {
  background: linear-gradient(to bottom,#004763,#022d3d);
  padding: 6rem 2rem;
}

.cours-container h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #ffcc00;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
}

.cours-intro {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.5s ease;
}

.cours-intro:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cours-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s ease;
}

.cours-intro:hover .cours-image {
  transform: scale(1.08);
}

.cours-intro h3 {
  color: #ffcc00;
  margin: 1.5rem 1rem 1rem;
}

.cours-intro p {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  padding: 0 1rem;
}

.cours-link {
  display: inline-block;
  margin: 1.5rem 1rem 2rem;
  padding: 12px 22px;
  border-radius: 12px;
  background: #ffcc00;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
}

.cours-link:hover {
  transform: translateY(-4px);
}

/* ================= FORM ================= */

.form-container {
  background: #004763;
  padding: 6rem 2rem;
}

.form-container h2 {
  text-align: center;
  font-size: 3rem;
  color: #ffcc00;
}

.form-container p {
  text-align: center;
  margin-bottom: 3rem;
}

.form-1 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-content {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  width: 400px;
}

.form-content label {
  margin-bottom: 0.5rem;
  display: block;
}

.form-content input,
.form-content textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
}

.form-content textarea {
  resize: none;
  min-height: 120px;
}

.form-content button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #ffcc00;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s ease;
}

.form-content button:hover {
  transform: translateY(-4px);
}

.box-map iframe {
  width: 550px;
  height: 500px;
  border-radius: 24px;
}

/* ================= PREMIUM FOOTER ================= */

.footer-section{
    position: relative;
    background: linear-gradient(135deg, #04141d, #004763);
    padding: 5rem 8%;
    overflow: hidden;
    color: #ffffff;
}

/* Glow background */
.footer-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 204, 0, 0.08);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    filter: blur(80px);
}

.footer-section::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(1, 98, 136, 0.25);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    filter: blur(100px);
}

/* CONTENT */
.footer-infos{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* TITLES */
.footer-section h3,
.footer-section h4{
    color: #ffcc00;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #ffcc00;
    border-radius: 10px;
}

/* TEXT */
.infos-ft p{
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* MENU LINKS */
.link-ft{
    display: flex;
    flex-direction: column;
}

.link-ft a{
    position: relative;
    width: fit-content;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
    transition: 0.3s ease;
    font-weight: 400;
}

.link-ft a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #ffcc00;
    transition: 0.3s ease;
}

.link-ft a:hover{
    color: #ffcc00;
    transform: translateX(5px);
}

.link-ft a:hover::before{
    width: 100%;
}

/* SOCIAL ICONS */
.social-icons{
    position: relative;
    z-index: 2;
}

.social-icons a{
    width: 50px;
    height: 50px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin-right: 12px;

    border-radius: 50%;
    text-decoration: none;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: 0.35s ease;
}

.social-icons a i{
    color: #ffffff;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.social-icons a:hover{
    transform: translateY(-8px) scale(1.08);
    background: #ffcc00;
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.35);
}

.social-icons a:hover i{
    color: #04141d;
}

/* DIVIDER */
.divider{
    position: relative;
    z-index: 2;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    margin: 2rem 0;
}

/* LEGAL LINKS */
.footer-links{
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-links h3{
    display: inline-block;
}

.footer-links ul{
    margin-top: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 1rem;

    padding: 0;
}

.footer-links ul li{
    list-style: none;
}

.footer-links ul li a{
    display: inline-flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    padding: 12px 22px;

    border-radius: 40px;

    background: rgba(255,255,255,0.05);

    color: rgba(255,255,255,0.88);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: 0.3s ease;;
}

.footer-links ul li a:hover{
    background: #ffcc00;
    color: #04141d;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.25);
}

/* COPYRIGHT */
.footer-down{
    position: relative;
    z-index: 2;

    text-align: center;

    margin-top: 3rem;

    color: rgba(255,255,255,0.65);

    font-size: 0.95rem;

    letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px){

    .footer-section{
        padding: 4rem 1.5rem;
    }

    .footer-infos{
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* TOUT CENTRER EN MOBILE */

    .footer-infos > div{
        align-items: center;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4{
        text-align: center;
    }

    /* LIGNES CENTREES */

    .footer-section h3::after,
    .footer-section h4::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .infos-ft p{
        max-width: 100%;
        text-align: center;
    }

    .link-ft{
        align-items: center;
    }

    .social-icons{
        justify-content: center;
    }

    .footer-links ul{
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links ul li{
        width: 100%;
    }

    .footer-links ul li a{
        width: 100%;
        max-width: 320px;
    }

    .footer-down{
        text-align: center;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px){

    .footer-section{
        padding: 3.5rem 1rem;
    }

    .footer-section h3,
    .footer-section h4{
        font-size: 1.15rem;
    }

    .infos-ft p{
        font-size: 0.92rem;
    }

    .link-ft a{
        font-size: 0.93rem;
    }

    .social-icons a{
        width: 46px;
        height: 46px;
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.hero{
  padding: 0 1.5rem;
  text-align:center;
}

.hero-txt h1{
  font-size:2.8rem;
}

.hero-buttons{
  justify-content:center;
}

.box-map iframe{
  width:100%;
  height:350px;
}

.form-content{
  width:100%;
}

.footer-infos{
  text-align:center;
}

}
/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

.icons {
  display: block;
}

.navbar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0,71,99,0.95);
  flex-direction: column;
  padding: 2rem;
  display: none;
}

.nav-link a::after {
    bottom: -3px;
    height: 2px;
  }

  .nav-link a:hover::after {
    width: 35%;
  }

#check:checked~.navbar {
  display: flex;
}

.hero {
  padding: 0 1.5rem;
  text-align: center;
}

.hero-txt h1 {
  font-size: 2.8rem;
}

.hero-buttons {
  justify-content: center;
}

.box-map iframe {
  width: 100%;
  height: 350px;
}

.form-content {
  width: 100%;
}

.footer-infos {
  flex-direction: column;
  text-align: center;
}

}

/* ================= TEMOIGNAGES PREMIUM ================= */

.testimonials-section{
    position: relative;
    padding: 7rem 8%;
    background: linear-gradient(135deg, #04141d, #004763);
    overflow: hidden;
}

/* LIGHT EFFECTS */

.testimonials-section::before{
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    background: rgba(255,204,0,0.08);

    border-radius: 50%;

    top: -180px;
    right: -120px;

    filter: blur(100px);
}

.testimonials-section::after{
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(1,98,136,0.25);

    border-radius: 50%;

    bottom: -160px;
    left: -100px;

    filter: blur(120px);
}

/* ================= HEADER ================= */

.testimonials-header{
    position: relative;
    z-index: 2;

    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge{
    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(10px);

    color: #ffcc00;

    font-size: 0.95rem;
    font-weight: 600;

    margin-bottom: 1.5rem;
}

.testimonials-header h2{
    font-size: 3rem;
    font-weight: 700;

    color: #ffffff;

    margin-bottom: 1rem;

    line-height: 1.2;
}

.testimonials-header p{
    max-width: 720px;

    margin: auto;

    color: rgba(255,255,255,0.78);

    line-height: 1.8;

    font-size: 1rem;
}

/* ================= GRID ================= */

.testimonials-grid{
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));

    gap: 2rem;
}

/* ================= CARD ================= */

.testimonial-card{
    position: relative;

    padding: 2.2rem;

    border-radius: 28px;

    background: rgba(255,255,255,0.06);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.45s ease;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Glow hover */

.testimonial-card::before{
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(255,204,0,0.08);

    border-radius: 50%;

    top: -70px;
    right: -70px;

    filter: blur(50px);

    opacity: 0;

    transition: 0.4s ease;
}

.testimonial-card:hover{
    transform: translateY(-12px);

    border-color: rgba(255,204,0,0.35);

    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.testimonial-card:hover::before{
    opacity: 1;
}

/* ================= STARS ================= */

.testimonial-stars{
    margin-bottom: 1.5rem;
}

.testimonial-stars i{
    color: #ffcc00;

    margin-right: 4px;

    font-size: 1rem;
}

/* ================= TEXT ================= */

.testimonial-text{
    color: rgba(255,255,255,0.88);

    line-height: 1.9;

    font-size: 1rem;

    margin-bottom: 2rem;
}

/* ================= USER ================= */

.testimonial-user h4{
    color: #ffffff;

    font-size: 1.1rem;

    margin-bottom: 6px;

    font-weight: 600;
}

.testimonial-user span{
    color: rgba(255,255,255,0.65);

    font-size: 0.92rem;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .testimonials-section{
        padding: 5rem 5%;
    }

    .testimonials-header h2{
        font-size: 2.2rem;
    }

    .testimonials-grid{
        gap: 1.5rem;
    }

    .testimonial-card{
        padding: 2rem;
    }

}

/* ================= COOKIE BANNER ================= */

.cookie-banner{
  position:fixed;
  bottom:20px;
  left:50%;

  transform:translateX(-50%);

  width:min(92%, 1100px);

  background:rgba(7,18,28,0.92);

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:22px;

  padding:22px 24px;

  z-index:9999;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.35);
  transition: opacity 0.3s ease;
}

.cookie-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.cookie-content p{
  color:rgba(255,255,255,0.78);

  font-size:14px;
  line-height:1.7;
}

.cookie-content a{
  color:#ffcc00;
  text-decoration:none;
  font-weight:600;
}

.cookie-buttons{
  display:flex;
  gap:12px;
}

.cookie-buttons button{
  border:none;
  cursor:pointer;

  padding:12px 18px;

  border-radius:12px;

  font-weight:600;

  transition:0.25s ease;
}

#acceptCookies{
  background:#ffcc00;
  color:#08131b;
}

#acceptCookies:hover{
  transform:translateY(-2px);
}

.secondary-cookie{
  background:rgba(255,255,255,0.06);
  color:white;

  border:1px solid rgba(255,255,255,0.08);
}

.secondary-cookie:hover{
  background:rgba(255,255,255,0.1);
}

/* MOBILE */

@media(max-width:768px){

  .cookie-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-buttons{
    width:100%;
  }

  .cookie-buttons button{
    flex:1;
  }
}

/* ================= ACTIONS ================= */

.premium-actions{
  display:flex;
  gap:14px;
}

/* ================= BUY BUTTON ================= */

.premium-buy-btn{
  flex:1;

  padding:15px 18px;

  border-radius:16px;

  text-decoration:none;

  font-weight:700;

  color:#04131d;

  background:
    linear-gradient(
      135deg,
      #ffcc00,
      #ffd84d
    );

  transition:0.3s ease;

  box-shadow:
    0 12px 35px rgba(255,204,0,0.22);
}

.premium-buy-btn:hover{
  transform:translateY(-4px);

  box-shadow:
    0 18px 45px rgba(255,204,0,0.32);
}

/* ================= BACK BUTTON ================= */

.premium-back-btn{
  flex:1;

  padding:15px 18px;

  border-radius:16px;

  text-decoration:none;

  font-weight:600;

  color:#fff;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  transition:0.3s ease;
}

.premium-back-btn:hover{
  background:rgba(255,255,255,0.09);

  transform:translateY(-4px);
}

/* ================= ANIMATION ================= */

@keyframes popupShow{

  from{
    opacity:0;
    transform:translateY(20px) scale(0.96);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* ================= MOBILE ================= */

@media(max-width:650px){

  .premium-popup{
    padding:28px 22px;
    border-radius:24px;
  }

  .premium-popup h1{
    font-size:1.6rem;
  }

  .premium-popup p{
    font-size:0.92rem;
  }

  .premium-actions{
    flex-direction:column;
  }

}

/* =========================
   ACTION BUTTONS
========================= */
.premium-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* BUY BUTTON */
.premium-buy-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.premium-buy-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* BACK BUTTON */
.premium-back-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.premium-back-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ================= ADMIN NAVBAR BUTTON ================= */

.admin-link{

  display:flex;
  align-items:center;
  justify-content:center;

  gap:8px;

  padding:10px 16px;

  border-radius:12px;

  background:rgba(255,204,0,0.12);

  border:1px solid rgba(255,204,0,0.25);

  color:#ffcc00;

  text-decoration:none;

  font-size:14px;
  font-weight:600;

  transition:0.25s ease;

  white-space:nowrap;
}

.admin-link:hover{

  background:#ffcc00;
  color:#08131b;

  transform:translateY(-2px);
}

.admin-link:active{
  opacity:0.85;
}

.hidden{
  display:none !important;
}

.user-avatar {
  position: relative;
  display: none;
  align-items: center;
  cursor: pointer;
}

.user-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 204, 0, 0.6);
}

/* ================= DROPDOWN DESKTOP ================= */

.avatar-menu {
  position: absolute;
  top: 55px;
  right: 0;

  width: 220px;

  background: rgba(10, 20, 30, 0.95);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  padding: 12px;

  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;

  transition: all 0.2s ease;

  z-index: 9999;
}

.user-avatar.open .avatar-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ================= USER INFO ================= */

.avatar-user-info {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}

.avatar-name {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.avatar-email {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin-top: 2px;
}

.avatar-badge {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 204, 0, 0.15);
  color: #ffcc00;
}

/* ================= LINKS ================= */

.avatar-menu a {
  padding: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.avatar-menu a:hover {
  background: rgba(255, 204, 0, 0.12);
  color: #ffcc00;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .user-avatar img {
    width: 38px;
    height: 38px;
  }

  .avatar-menu {
    position: fixed;
    top: 70px;
    right: 12px;
    left: 12px;

    width: auto;

    border-radius: 16px;

    transform: translateY(10px) scale(1);
  }

  .user-avatar.open .avatar-menu {
    transform: translateY(0) scale(1);
  }

  .avatar-menu a {
    font-size: 15px;
    padding: 14px;
  }

  .avatar-user-info {
    text-align: center;
  }
}
