 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        body {
            font-family: Arial, sans-serif;
            background: #07111f;
            color: #e5edf8;
            line-height: 1.6
        }

        a {
            text-decoration: none;
            color: inherit
        }

        .container {
            width: min(1180px, 92%);
            margin: auto
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(7, 17, 31, .92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #fff
        }

        .logo span {
            color: #38bdf8
        }

        .menu {
            display: flex;
            gap: 22px;
            font-size: 15px;
            color: #cbd5e1
        }

        .btn {
            display: inline-block;
            background: #38bdf8;
            color: #06121f;
            padding: 13px 22px;
            border-radius: 999px;
            font-weight: 700
        }

        .btn.dark {
            background: #111827;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .15)
        }

        .hero {
            padding: 95px 0 80px;
            background: radial-gradient(circle at top right, #0ea5e955, transparent 40%), linear-gradient(135deg, #07111f, #0f172a)
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 50px;
            align-items: center
        }

        .badge {
            display: inline-block;
            background: #0f2a44;
            color: #7dd3fc;
            padding: 8px 14px;
            border-radius: 999px;
            margin-bottom: 20px;
            font-weight: 700
        }

        h1 {
            font-size: 56px;
            line-height: 1.05;
            margin-bottom: 22px;
            color: #fff
        }

        .hero p {
            font-size: 19px;
            color: #cbd5e1;
            margin-bottom: 28px
        }

        .hero-card {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 26px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .35)
        }

        .status {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .status strong {
            color: #38bdf8
        }

        .section {
            padding: 80px 0
        }

        .section h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 16px;
            color: #fff
        }

        .section .lead {
            text-align: center;
            color: #cbd5e1;
            max-width: 780px;
            margin: 0 auto 45px
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .card {
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 22px;
            padding: 28px
        }

        .card h3 {
            font-size: 23px;
            margin-bottom: 12px;
            color: #fff
        }

        .card p,
        .card li {
            color: #cbd5e1
        }

        .card ul {
            padding-left: 20px;
            margin-top: 15px
        }

        .price {
            font-size: 42px;
            font-weight: 900;
            color: #38bdf8;
            margin: 18px 0
        }

        .price small {
            font-size: 15px;
            color: #94a3b8
        }

        .feature {
            display: flex;
            gap: 14px;
            margin-bottom: 16px
        }

        .icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: #082f49;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #38bdf8;
            font-weight: 900
        }

        .cta {
            background: linear-gradient(135deg, #0284c7, #0f172a);
            border-radius: 28px;
            padding: 55px;
            text-align: center
        }

        .cta h2 {
            font-size: 38px
        }

        .footer {
            padding: 35px 0;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: #94a3b8;
            text-align: center
        }

        @media(max-width:850px) {

            .hero-grid,
            .grid {
                grid-template-columns: 1fr
            }

            h1 {
                font-size: 40px
            }

            .menu {
                display: none
            }
        }

        .lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-menu {
  display: none;
  position: absolute;
  background: #111;
  min-width: 120px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 9999;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.lang-menu a:hover {
  background: #222;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    color: inherit;
}

.logo img {
    width: 250px;
    height: 420px;
    object-fit: contain;
}

.logo strong {
    color: #ffcc00;
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 30px;
    cursor: pointer;
}

.mobile-panel-btn {
    display: none;
}

.lang-dropdown {
    position: relative;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111827;
    min-width: 120px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 9999;
}

.lang-dropdown:hover .lang-menu {
    display: block;
}

.lang-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}

.lang-menu a:hover {
    background: #1f2937;
}

.contact-form {
    max-width: 620px;
    margin: 25px auto 0;
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.form-success {
    margin: 20px auto;
    max-width: 620px;
    padding: 14px;
    border-radius: 12px;
    background: #d1fae5;
    color: #065f46;
}

.form-error {
    margin: 20px auto;
    max-width: 620px;
    padding: 14px;
    border-radius: 12px;
    background: #fee2e2;
    color: #991b1b;
}

.plan-card > div[id^="paypal"] {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .desktop-panel-btn {
        display: none;
    }

    .mobile-panel-btn {
        display: inline-flex;
        justify-content: center;
        margin-top: 10px;
    }

    .nav {
        position: relative;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 20px;
        flex-direction: column;
        gap: 14px;
        border-radius: 0 0 18px 18px;
        z-index: 9999;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        color: #fff;
    }

    .lang-menu {
        position: static;
        margin-top: 8px;
        display: block;
        background: #1e293b;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 400px;
    height: auto;
    max-height: 75px;
    object-fit: contain;
    display: block;
}

.logo span {
    display: none;
}

@media (max-width: 768px) {
    .logo img {
        width: 145px;
        max-height: 60px;
    }
}
.logo {
    width: 320px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: auto;
}
.free-trial-banner {
    margin: 40px 0;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a, #0f172a);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.free-trial-content h3 {
    color: #fff;
    margin: 15px 0 20px;
    font-size: 2rem;
}

.free-trial-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.free-trial-content ul li {
    color: #dbeafe;
    margin: 10px 0;
    font-size: 1.1rem;
}

.free-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
}

.free-trial-banner .btn {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .free-trial-banner {
        padding: 25px;
    }

    .free-trial-content h3 {
        font-size: 1.5rem;
    }
}
.hero-buttons {
    display: flex;
    gap: 20px; /* razmak između dugmadi */
    margin-top: 30px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobilni prikaz */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
/* ==========================================
   Cookie Policy / Privacy / Terms Pages
========================================== */

.legal-page {
    padding: 80px 0;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.legal-page > .container > p:first-of-type {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 40px;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #00c2ff;
    font-size: 1.5rem;
    border-left: 4px solid #00c2ff;
    padding-left: 12px;
}

.legal-page h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.15rem;
}

.legal-page p {
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 15px 0 25px 25px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #d6d6d6;
}

.legal-page a {
    color: #00c2ff;
    text-decoration: none;
    transition: .3s;
}

.legal-page a:hover {
    color: #4dd9ff;
    text-decoration: underline;
}

/* Kartica */

.legal-page .container {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

/* Mobile */

@media (max-width: 768px) {

    .legal-page {
        padding: 50px 15px;
    }

    .legal-page .container {
        padding: 30px 20px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.3rem;
    }

    .legal-page h3 {
        font-size: 1.1rem;
    }

    .legal-page p,
    .legal-page li {
        font-size: .95rem;
    }

}
/* ==========================================
   RadioHosting DF v2.0 Premium UI
========================================== */

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(56,189,248,.12), transparent 28%),
        radial-gradient(circle at 85% 30%, rgba(34,197,94,.08), transparent 26%),
        #07111f;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Cards premium */
.card,
.hero-card,
.free-trial-banner,
.cta {
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card:hover,
.hero-card:hover,
.free-trial-banner:hover {
    transform: translateY(-10px);
    border-color: rgba(56,189,248,.55);
    box-shadow: 0 25px 70px rgba(56,189,248,.18);
}

.card::before,
.hero-card::before,
.free-trial-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(56,189,248,.12), transparent);
    transform: translateX(-120%);
    transition: .7s;
    pointer-events: none;
}

.card:hover::before,
.hero-card:hover::before,
.free-trial-banner:hover::before {
    transform: translateX(120%);
}

/* Dugmad shine effect */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(56,189,248,.25);
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
    transition: .6s;
}

.btn:hover::after {
    left: 120%;
}

/* Hero premium */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -140px;
    top: 80px;
    background: radial-gradient(circle, rgba(56,189,248,.22), transparent 65%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-card {
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Server status pulse */
.status strong::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 rgba(34,197,94,.8);
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% {
        box-shadow: 0 0 0 0 rgba(34,197,94,.8);
    }
    70% {
        box-shadow: 0 0 0 13px rgba(34,197,94,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0);
    }
}

/* Premium plan highlight */
.plan-card:nth-child(3) {
    border-color: rgba(250,204,21,.55);
    box-shadow: 0 20px 55px rgba(250,204,21,.12);
}

.plan-card:nth-child(3)::after {
    content: "POPULAR";
    position: absolute;
    top: 18px;
    right: -38px;
    background: #facc15;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 45px;
    transform: rotate(35deg);
}

/* Contact form premium */
.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    outline: none;
    transition: .25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56,189,248,.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

/* Mobile */
@media (max-width: 768px) {
    .reveal {
        transform: translateY(45px);
    }

    .card:hover,
    .hero-card:hover,
    .free-trial-banner:hover {
        transform: none;
    }

    .hero-card {
        animation: none;
    }

    .plan-card:nth-child(3)::after {
        font-size: 10px;
        top: 14px;
        right: -42px;
    }
}
/* ==========================================
   Header Premium UI v2
========================================== */

.header {
    background: rgba(7,17,31,.78);
    box-shadow: 0 10px 35px rgba(0,0,0,.22);
}

.nav {
    padding: 14px 0;
}

.logo {
    position: relative;
    transition: transform .3s ease, filter .3s ease;
}

.logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 18px rgba(56,189,248,.45));
}

.logo::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 18px;
    background: linear-gradient(120deg, transparent, rgba(56,189,248,.18), transparent);
    opacity: 0;
    transition: .35s;
    z-index: -1;
}

.logo:hover::after {
    opacity: 1;
}

.menu {
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.menu > a,
.lang-dropdown > a {
    position: relative;
    padding: 10px 15px;
    border-radius: 999px;
    color: #dbeafe;
    font-weight: 700;
    transition: .25s ease;
}

.menu > a:hover,
.lang-dropdown > a:hover {
    color: #06121f;
    background: #38bdf8;
    box-shadow: 0 10px 25px rgba(56,189,248,.25);
}

.desktop-panel-btn {
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    color: #06121f;
    box-shadow: 0 12px 30px rgba(56,189,248,.2);
}

.desktop-panel-btn:hover {
    box-shadow: 0 18px 45px rgba(34,197,94,.25);
}

.lang-menu {
    top: calc(100% + 12px);
    background: rgba(15,23,42,.96);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.lang-menu a {
    transition: .25s;
}

.lang-menu a:hover {
    background: rgba(56,189,248,.16);
    color: #7dd3fc;
}

/* Hamburger premium */
.hamburger {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: #38bdf8;
    transition: .25s;
}

.hamburger:hover {
    background: rgba(56,189,248,.16);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header {
        background: rgba(7,17,31,.94);
    }

    .logo {
        width: 185px;
    }

    .menu {
        top: calc(100% + 10px);
        padding: 18px;
        border-radius: 22px;
        background: rgba(15,23,42,.98);
        border: 1px solid rgba(56,189,248,.18);
        box-shadow: 0 22px 60px rgba(0,0,0,.45);
        gap: 10px;
    }

    .menu > a,
    .lang-dropdown > a {
        width: 100%;
        padding: 13px 16px;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.07);
    }

    .mobile-panel-btn {
        width: 100%;
        margin-top: 8px;
    }

    .lang-menu {
        margin-top: 10px;
        border-radius: 14px;
    }
}
/*=====================================
        Premium Footer v2
======================================*/

.footer{

    margin-top:80px;

    background:#050d18;

    border-top:1px solid rgba(255,255,255,.08);

    padding:45px 0;

}

.menu-footer{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

}

.menu-footer a{

    position:relative;

    font-size:14px;

    color:#94a3b8;

    padding:6px 12px;

    border-radius:30px;

    transition:.3s;

}

.menu-footer a:hover{

    color:#38bdf8;

    background:rgba(56,189,248,.08);

}

.menu-footer a::after{

    content:"";

    position:absolute;

    left:12px;

    bottom:3px;

    width:0;

    height:2px;

    background:#38bdf8;

    transition:.3s;

}

.menu-footer a:hover::after{

    width:calc(100% - 24px);

}

.footer-divider{

    width:120px;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(56,189,248,.6),
        transparent
    );

    margin:0 auto 22px;

}

.footer p{

    text-align:center;

    color:#64748b;

    font-size:14px;

    line-height:1.7;

}

.footer p a{

    color:#38bdf8;

}

.footer p a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

    .menu-footer{

        gap:8px;

    }

    .menu-footer a{

        font-size:13px;

        padding:5px 10px;

    }

}
/*=====================================
        Footer Features
======================================*/

.footer-features{

    margin-top:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

}

.footer-features span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    border-radius:30px;

    font-size:14px;

    color:#cbd5e1;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:.3s ease;

}

.footer-features span:hover{

    transform:translateY(-3px);

    background:rgba(56,189,248,.10);

    border-color:rgba(56,189,248,.30);

    box-shadow:0 10px 25px rgba(56,189,248,.15);

}

.footer-features strong{

    color:#ffffff;

}

@media(max-width:768px){

    .footer-features{

        gap:10px;

    }

    .footer-features span{

        width:100%;

        justify-content:center;

        font-size:13px;

    }

}
.footer-bottom{

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    font-size:13px;

    color:#64748b;

}

.footer-bottom a{

    color:#38bdf8;

    font-weight:700;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#7dd3fc;

}
/* ==========================================
   Premium Animated Background
========================================== */

body {
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 20%, rgba(56,189,248,.16), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(34,197,94,.10), transparent 25%),
        radial-gradient(circle at 50% 90%, rgba(14,165,233,.10), transparent 30%),
        #07111f;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .35;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.55) 2.5px, transparent 2.5px),
        radial-gradient(circle, rgba(56,189,248,.35) 3px, transparent 3px);
    background-size: 90px 90px, 140px 140px;
    background-position: 0 0, 40px 60px;
    animation: bgStarsMove 38s linear infinite;
    pointer-events: none;
}

@keyframes bgStarsMove {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-140px);
    }
}

/* Hero dodatni premium glow */
.hero {
    background:
        radial-gradient(circle at top right, rgba(56,189,248,.25), transparent 42%),
        radial-gradient(circle at left center, rgba(34,197,94,.10), transparent 35%),
        linear-gradient(135deg, rgba(7,17,31,.92), rgba(15,23,42,.96));
}

.section {
    position: relative;
    z-index: 1;
}
/* ==========================================
        Floating Premium Particles
========================================== */

.floating-particles{

    position:fixed;

    inset:0;

    overflow:hidden;

    pointer-events:none;

    z-index:-1;

}

.floating-particles span{

    position:absolute;

    display:block;

    border-radius:50%;

    background:rgba(56,189,248,.35);

    box-shadow:

        0 0 12px rgba(56,189,248,.35),

        0 0 25px rgba(56,189,248,.20);

    animation:floatParticle linear infinite;

}

/* veličine */

.floating-particles span:nth-child(1){

width:8px;height:8px;
left:8%;
animation-duration:18s;
animation-delay:0s;

}

.floating-particles span:nth-child(2){

width:14px;height:14px;
left:18%;
animation-duration:24s;
animation-delay:2s;

}

.floating-particles span:nth-child(3){

width:10px;height:10px;
left:32%;
animation-duration:20s;
animation-delay:4s;

}

.floating-particles span:nth-child(4){

width:18px;height:18px;
left:46%;
animation-duration:30s;
animation-delay:1s;

}

.floating-particles span:nth-child(5){

width:7px;height:7px;
left:58%;
animation-duration:17s;
animation-delay:3s;

}

.floating-particles span:nth-child(6){

width:13px;height:13px;
left:70%;
animation-duration:27s;
animation-delay:5s;

}

.floating-particles span:nth-child(7){

width:9px;height:9px;
left:80%;
animation-duration:22s;
animation-delay:1s;

}

.floating-particles span:nth-child(8){

width:16px;height:16px;
left:88%;
animation-duration:28s;
animation-delay:6s;

}

.floating-particles span:nth-child(9){

width:11px;height:11px;
left:25%;
animation-duration:19s;
animation-delay:7s;

}

.floating-particles span:nth-child(10){

width:20px;height:20px;
left:92%;
animation-duration:35s;
animation-delay:2s;

}

@keyframes floatParticle{

    0%{

        transform:

        translateY(110vh)

        translateX(0)

        scale(.5);

        opacity:0;

    }

    10%{

        opacity:.35;

    }

    50%{

        transform:

        translateY(40vh)

        translateX(35px)

        scale(1);

    }

    100%{

        transform:

        translateY(-120px)

        translateX(-35px)

        scale(1.3);

        opacity:0;

    }

}
/* ==========================================
   RadioHosting DF v3.0 Ultimate Background
========================================== */

.rhdf-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(56,189,248,.18), transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(34,197,94,.12), transparent 24%),
        radial-gradient(circle at 50% 90%, rgba(14,165,233,.12), transparent 28%);
}

.rhdf-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(56,189,248,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,.10) 1px, transparent 1px);
    background-size: 90px 90px;
    animation: rhdfGrid 28s linear infinite;
}

.rhdf-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.70) 2px, transparent 2px),
        radial-gradient(circle, rgba(56,189,248,.55) 3px, transparent 3px);
    background-size: 160px 160px, 260px 260px;
    background-position: 0 0, 80px 120px;
    animation: rhdfStars 42s linear infinite;
}

.rhdf-bg span {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(56,189,248,.12);
    filter: blur(25px);
    animation: rhdfGlow 18s ease-in-out infinite;
}

.rhdf-bg span:nth-child(1) { left: 8%; top: 15%; }
.rhdf-bg span:nth-child(2) { right: 10%; top: 25%; animation-delay: 3s; }
.rhdf-bg span:nth-child(3) { left: 35%; bottom: 12%; animation-delay: 6s; }
.rhdf-bg span:nth-child(4) { right: 25%; bottom: 20%; animation-delay: 9s; }
.rhdf-bg span:nth-child(5) { left: 70%; top: 65%; animation-delay: 12s; }

.rhdf-bg i {
    position: absolute;
    bottom: -60px;
    font-style: normal;
    color: rgba(56,189,248,.18);
    font-size: 34px;
    animation: rhdfNotes 22s linear infinite;
}

.rhdf-bg i:nth-of-type(1) { left: 18%; animation-delay: 0s; }
.rhdf-bg i:nth-of-type(2) { left: 52%; animation-delay: 6s; font-size: 42px; }
.rhdf-bg i:nth-of-type(3) { left: 78%; animation-delay: 11s; font-size: 30px; }

@keyframes rhdfGrid {
    from { transform: translateY(0); }
    to { transform: translateY(-90px); }
}

@keyframes rhdfStars {
    from { transform: translateY(0); }
    to { transform: translateY(-160px); }
}

@keyframes rhdfGlow {
    0%, 100% { transform: translate(0,0) scale(1); opacity: .45; }
    50% { transform: translate(40px,-35px) scale(1.25); opacity: .8; }
}

@keyframes rhdfNotes {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    15% { opacity: .25; }
    80% { opacity: .18; }
    100% { transform: translateY(-120vh) rotate(18deg); opacity: 0; }
}

@media (max-width: 768px) {
    .rhdf-bg::before {
        background-size: 120px 120px;
        opacity: .14;
    }

    .rhdf-bg::after {
        opacity: .22;
    }

    .rhdf-bg span {
        width: 130px;
        height: 130px;
    }

    .rhdf-bg i {
        font-size: 24px;
    }
}
/* ==========================================
   Language menu fix - desktop + mobile
========================================== */

.lang-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown > a {
    cursor: pointer;
}

/* Desktop dropdown */
.lang-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 150px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(15, 23, 42, .98);
    border: 1px solid rgba(56,189,248,.22);
    box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

/* Nevidljivi most da hover ne nestane */
.lang-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    color: #e5edf8;
}

.lang-menu a:hover {
    background: rgba(56,189,248,.14);
    color: #7dd3fc;
}

/* Mobile language dropdown */
@media (max-width: 768px) {

    .lang-dropdown {
        width: 100%;
        display: block;
        text-align: center;
    }

    .lang-dropdown > a {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 13px 16px;
        border-radius: 999px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.10);
    }

    .lang-dropdown::after {
        display: none;
    }

    .lang-menu {
        position: static;
        transform: none;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        min-width: 0;
        margin-top: 10px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(5,13,24,.65);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    }

    .lang-menu a {
        justify-content: center;
        padding: 12px 8px;
        border-radius: 14px;
        background: rgba(255,255,255,.05);
        font-size: 13px;
    }
}
.btn-outline {
    background: transparent;
    color: #38bdf8;
    border: 1px solid rgba(56,189,248,.45);
}

.btn-outline:hover {
    background: rgba(56,189,248,.12);
    color: #fff;
}

.page-card {
    max-width: 950px;
    margin: 0 auto 28px;
}

.page-card h2 {
    margin-bottom: 18px;
    color: #fff;
}

.page-card p {
    margin-bottom: 16px;
    color: #cbd5e1;
}

.about-grid {
    margin-top: 26px;
}
/* ==========================================
        404 Page
========================================== */

.error-card{

    max-width:760px;

    margin:auto;

    text-align:center;

    padding:60px;

}

.error-icon{

    font-size:90px;

    margin-bottom:25px;

    animation:radioFloat 4s ease-in-out infinite;

}

.error-card h2{

    font-size:40px;

    margin-bottom:20px;

    color:#fff;

}

.error-card p{

    font-size:18px;

    color:#cbd5e1;

    margin-bottom:35px;

}

@keyframes radioFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

}

@media(max-width:768px){

.error-card{

padding:35px 20px;

}

.error-card h2{

font-size:30px;

}

.error-icon{

font-size:70px;

}

}

/* ==========================================
        404 Language Switch
========================================== */

.error-language{

    display:flex;

    justify-content:center;

    gap:12px;

    margin:22px 0 35px;

    flex-wrap:wrap;

}

.error-language a{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#dbeafe;

    font-size:14px;

    font-weight:700;

    transition:.3s;

}

.error-language a:hover{

    background:#38bdf8;

    color:#06121f;

    transform:translateY(-3px);

}

.error-language .active{

    background:#38bdf8;

    color:#06121f;

    box-shadow:0 10px 25px rgba(56,189,248,.25);

}