/*
Theme Name: StarConnect Pro Elite
Theme URI: https://difusie.com
Author: Difusie Media Group
Description: Premium adult platform for male model portfolios
Version: 4.7 Elite Edition
License: Commercial
Text Domain: starconnect
*/

/* ===== LUXURY FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===== LUXURY VARIABLES ===== */
:root {
    /* TAČNE DIMENZIJE - VERTIKALNE KARTICE */
    --model-card-width: 272px;
    --model-image-height: 420px; /* POVEĆANO za A4 format */
    --model-content-height: 140px; /* POVEĆANO za više teksta */
    
    --magazine-card-width: 272px;
    --magazine-image-height: 420px; /* POVEĆANO za A4 format */
    --magazine-content-height: 140px; /* POVEĆANO za više teksta */
    
    /* Color Palette - ENHANCED */
    --luxury-pink: #FF2D6B;
    --luxury-blue: #3B82F6;
    --luxury-green: #00FF88;
    --luxury-purple: #8A2BE2;
    --sperm-color: rgba(255, 255, 255, 0.9); /* Bela sperma */
    
    /* Background */
    --gradient-bg-main: linear-gradient(135deg, #0a0a1a 0%, #0f0c29 25%, #1a1a2e 50%, #24243e 75%, #0a0a1a 100%);
    --gradient-text: linear-gradient(135deg, var(--luxury-pink) 0%, var(--luxury-blue) 100%);
    --gradient-hot: linear-gradient(135deg, #ff2d6b 0%, #ff6b9d 50%, #ff2d6b 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-green: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    
    /* Shadows */
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(255, 45, 107, 0.6);
    --shadow-blue-glow: 0 0 40px rgba(59, 130, 246, 0.6);
    --shadow-green-glow: 0 0 40px rgba(0, 255, 136, 0.6);
    
    /* Fonts */
    --font-jost: 'Jost', sans-serif;
    
    /* Transitions */
    --transition-luxury: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-jost);
    background: var(--gradient-bg-main);
    color: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

/* ===== ENHANCED BACKGROUND ===== */
.luxury-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 45, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    background-size: 400% 400%;
    animation: gradientPulse 20s ease infinite;
    z-index: -1;
    overflow: hidden;
}

/* SPERMA ANIMACIJA - JAKA VERZIJA */
.sperm-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.sperm-particle {
    position: absolute;
    background: var(--sperm-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(1px);
    opacity: 0;
    transform-origin: center;
}

/* Različiti tipovi sperme */
.sperm-drop {
    width: 8px;
    height: 12px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 100%);
}

.sperm-splatter {
    width: 15px;
    height: 15px;
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.4) 70%,
        transparent 100%);
}

.sperm-stream {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%);
}

/* ANIMACIJE ZA SPERMU */
@keyframes spermShoot {
    0% {
        transform: translateX(-100px) translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    20% {
        transform: translateX(var(--sperm-x, 200px)) translateY(calc(100vh - 100px)) rotate(180deg) scale(1);
    }
    30% {
        transform: translateX(calc(var(--sperm-x, 200px) + 50px)) translateY(calc(100vh - 200px)) rotate(360deg) scale(1.2);
    }
    50% {
        transform: translateX(calc(var(--sperm-x, 200px) + 100px)) translateY(calc(100vh - 400px)) rotate(540deg) scale(1);
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(calc(var(--sperm-x, 200px) + 300px)) translateY(-100px) rotate(720deg) scale(0.3);
        opacity: 0;
    }
}

@keyframes spermExplode {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.9;
    }
    40% {
        transform: scale(1) rotate(360deg);
        opacity: 0.7;
    }
    60% {
        transform: scale(0.8) rotate(540deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(0) rotate(720deg);
        opacity: 0;
    }
}

@keyframes spermDrip {
    0% {
        transform: translateY(-100px) scale(0.5);
        opacity: 0;
    }
    20% {
        transform: translateY(100px) scale(1);
        opacity: 0.8;
    }
    40% {
        transform: translateY(300px) scale(0.9);
        opacity: 0.6;
    }
    60% {
        transform: translateY(500px) scale(0.7);
        opacity: 0.4;
    }
    100% {
        transform: translateY(100vh) scale(0.3);
        opacity: 0;
    }
}

@keyframes gradientPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.site-header {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
}

.brand-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.brand-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--luxury-pink), var(--luxury-blue)) border-box;
    padding: 4px;
    box-shadow: 
        0 0 30px rgba(255, 45, 107, 0.4), 
        0 0 60px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: var(--transition-luxury);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

/* JAKA JEBANJE ANIMACIJA ZA AVATAR - POBOLJŠANA! */
@keyframes fuckAnimation {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg) scale(1.05); 
    }
    15% { 
        transform: translateX(8px) translateY(-5px) rotate(2deg) scale(1.06); 
    }
    30% { 
        transform: translateX(-6px) translateY(7px) rotate(-3deg) scale(1.05); 
    }
    45% { 
        transform: translateX(10px) translateY(-3px) rotate(4deg) scale(1.07); 
    }
    60% { 
        transform: translateX(-8px) translateY(6px) rotate(-2deg) scale(1.05); 
    }
    75% { 
        transform: translateX(7px) translateY(-4px) rotate(3deg) scale(1.06); 
    }
    90% { 
        transform: translateX(-5px) translateY(5px) rotate(-1deg) scale(1.05); 
    }
}

.brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 45, 107, 0.6), 
        0 0 80px rgba(59, 130, 246, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: 
        logoPulse 2s infinite,
        fuckAnimation 0.5s ease-in-out infinite; /* JAKA JEBANJE ANIMACIJA */
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.08); }
}

.brand-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--luxury-pink), var(--luxury-blue), var(--luxury-green)) border-box;
    animation: rotateRing 8s linear infinite;
    padding: 2px;
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 1px));
    z-index: -1;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Instagram-style verified badge */
.verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--luxury-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: var(--transition-luxury);
}

.verified-badge:hover {
    transform: scale(1.2) rotate(15deg);
    background: var(--luxury-green);
}

.verified-badge i {
    color: white;
    font-size: 14px;
}

.site-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% auto;
    animation: textShine 4s ease-in-out infinite alternate;
    letter-spacing: 1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.site-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ===== PROFESIONALAN ANNOUNCEMENT BAR - ČIST TEKST ===== */
.announcement-bar {
    background: linear-gradient(90deg, 
        #ff2d6b 0%, 
        #3b82f6 25%, 
        #00ff88 50%, 
        #3b82f6 75%, 
        #ff2d6b 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin: 25px 0;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-size: 300% 100%;
    animation: announcementScroll 15s linear infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes announcementScroll {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    animation: smoothMarquee 25s linear infinite;
    white-space: nowrap;
}

@keyframes smoothMarquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    padding: 6px 12px;
    /* UKLONJENA POZADINA - ČIST TEKST */
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.announcement-icon {
    font-size: 18px;
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.announcement-text {
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 14px;
}

/* ===== SOCIAL ICONS ===== */
.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-luxury);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.social-icon i {
    font-size: 22px;
    color: white;
    position: relative;
    z-index: 1;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border-color: #E1306C;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-text);
    border-radius: 2px;
}

.section-label {
    display: inline-block;
    background: var(--gradient-text);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: labelPulse 3s infinite;
}

@keyframes labelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== FLEKSIBILNE MODEL KARTICE ===== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--model-card-width), 1fr));
    gap: 30px;
    justify-content: center;
    padding: 40px 0;
}

.model-card.elite {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-luxury);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px; /* POVEĆANO za A4 slike + tekst */
}

.model-card.elite:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--luxury-pink);
    box-shadow: 
        var(--shadow-luxury),
        0 0 50px rgba(255, 45, 107, 0.4);
    z-index: 10;
}

.model-card.elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-text);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.model-card.elite:hover::before {
    transform: scaleX(1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.model-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.model-image-container {
    width: 100%;
    height: var(--model-image-height);
    min-height: var(--model-image-height);
    overflow: hidden;
    position: relative;
    background: rgba(10, 10, 26, 0.5);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* PROMENJENO: contain umesto cover za celu sliku */
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    image-rendering: optimizeQuality;
    filter: brightness(0.95);
    background: rgba(0, 0, 0, 0.2);
}

.model-card.elite:hover .model-image {
    transform: scale(1.05); /* Malo manje skaliranje jer je contain */
    filter: brightness(1.1) contrast(1.1);
}

/* BEDŽEVI - ISPRAVLJENO DA BUDU POTPUNO VIDLJIVI */
.model-badges {
    position: absolute;
    top: 15px; /* PROMENJENO: pomeramo unutar kartice da budu vidljivi */
    left: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 20;
}

.model-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
    /* Osiguravamo da su uvek vidljivi */
    max-width: calc(100% - 30px);
    text-overflow: ellipsis;
}

/* Ako bedž prelazi širinu, smanjujemo ga */
@media (max-width: 300px) {
    .model-badge {
        font-size: 9px;
        padding: 6px 10px;
    }
}

.badge-featured { 
    background: linear-gradient(135deg, var(--luxury-pink), #FF6B9D); 
    color: white;
    border-color: var(--luxury-pink);
}

.badge-new { 
    background: linear-gradient(135deg, var(--luxury-blue), #4CC9F0); 
    color: white;
    border-color: var(--luxury-blue);
}

.badge-exclusive { 
    background: linear-gradient(135deg, var(--luxury-green), #00FF88); 
    color: #000;
    border-color: var(--luxury-green);
}

.badge-verified { 
    background: linear-gradient(135deg, var(--luxury-blue), #1DA1F2); 
    color: white;
    border: 2px solid white;
}

.badge-premium { 
    background: linear-gradient(135deg, var(--luxury-pink), #FF6B9D); 
    color: white;
    border-color: var(--luxury-pink);
}

.badge-vip { 
    background: var(--gradient-hot); 
    color: white;
    border-color: #ff2d6b;
}

.badge-hot { 
    background: var(--gradient-hot); 
    color: white; 
    animation: hotPulse 2s infinite;
    border-color: #ff2d6b;
}

.badge-trending { 
    background: linear-gradient(135deg, var(--luxury-purple), #8A2BE2); 
    color: white;
    border-color: var(--luxury-purple);
}

@keyframes hotPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 45, 107, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 45, 107, 0.8); }
}

.model-info.elite {
    padding: 25px 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* PROMENJENO: da tekst bude na vrhu */
    background: rgba(0, 0, 0, 0.7); /* TAMNIJA POZADINA za bolju čitljivost */
    backdrop-filter: blur(20px);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: var(--model-content-height);
    overflow: visible; /* OVO JE KLJUČNO: sada se vidi SAV TEKST */
}

.model-header {
    margin-bottom: 12px;
}

.model-name {
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.model-title {
    font-size: 14px;
    color: var(--luxury-blue);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.model-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    overflow: visible; /* PROMENJENO: sada je sve vidljivo */
    display: block; /* PROMENJENO: nema više -webkit-box ograničenja */
    max-height: none; /* UKLANJAMO maksimalnu visinu */
    font-weight: 400;
}

.model-cta.elite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    margin-top: 15px;
}

.model-card.elite:hover .model-cta.elite {
    background: rgba(255, 45, 107, 0.1);
    border-color: var(--luxury-pink);
}

.cta-text {
    font-size: 13px;
    color: var(--luxury-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-icon {
    font-size: 16px;
    color: var(--luxury-pink);
    transition: var(--transition-smooth);
}

.model-card.elite:hover .cta-icon {
    transform: translateX(8px);
    color: var(--luxury-green);
}

/* ===== FLEKSIBILNE MAGAZINE KARTICE ===== */
.magazines-section {
    margin: 80px 0;
}

.magazines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--magazine-card-width), 1fr));
    gap: 30px;
    justify-content: center;
    padding: 40px 0;
}

.magazine-card.elite {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-luxury);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px; /* POVEĆANO za A4 slike + tekst */
}

.magazine-card.elite:hover {
    transform: translateY(-15px);
    border-color: var(--luxury-blue);
    box-shadow: 
        var(--shadow-luxury),
        0 0 50px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

.magazine-card.elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.magazine-card.elite:hover::before {
    transform: scaleX(1);
}

.magazine-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.magazine-cover {
    width: 100%;
    height: var(--magazine-image-height);
    min-height: var(--magazine-image-height);
    overflow: hidden;
    position: relative;
    background: rgba(10, 10, 26, 0.5);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magazine-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* PROMENJENO: contain umesto cover */
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    image-rendering: optimizeQuality;
    filter: brightness(0.95);
    background: rgba(0, 0, 0, 0.2);
}

.magazine-card.elite:hover .magazine-cover-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* BEDŽEVI ZA MAGAZINE - ISPRAVLJENO */
.magazine-badges {
    position: absolute;
    top: 15px; /* PROMENJENO: unutar kartice */
    left: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 20;
}

.magazine-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: calc(100% - 30px);
    text-overflow: ellipsis;
}

@media (max-width: 300px) {
    .magazine-badge {
        font-size: 9px;
        padding: 6px 10px;
    }
}

.magazine-info.elite {
    padding: 25px 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: var(--magazine-content-height);
    overflow: visible; /* SAV TEKST VIDLJIV */
}

.magazine-header {
    margin-bottom: 12px;
}

.magazine-title {
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.magazine-issue {
    font-size: 14px;
    color: var(--luxury-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.magazine-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    overflow: visible; /* SAV TEKST VIDLJIV */
    display: block;
    max-height: none;
    font-weight: 400;
}

.magazine-cta.elite {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    margin-top: 15px;
}

.magazine-card.elite:hover .magazine-cta.elite {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--luxury-blue);
}

.magazine-cta-text {
    font-size: 13px;
    color: var(--luxury-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.magazine-cta-icon {
    font-size: 16px;
    color: var(--luxury-blue);
    transition: var(--transition-smooth);
}

.magazine-card.elite:hover .magazine-cta-icon {
    transform: translateX(8px);
    color: var(--luxury-green);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(255, 45, 107, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 25px;
    padding: 60px 40px;
    margin: 80px 0;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: white;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--luxury-pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 45, 107, 0.2);
}

.newsletter-button {
    padding: 18px 35px;
    background: var(--gradient-text);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-luxury);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 45, 107, 0.4);
}

.newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.newsletter-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    animation: messageIn 0.5s ease;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--luxury-green);
    color: var(--luxury-green);
}

.error-message {
    background: rgba(255, 45, 107, 0.1);
    border: 1px solid var(--luxury-pink);
    color: var(--luxury-pink);
}

/* ===== FOOTER ===== */
.site-footer {
    text-align: center;
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-text);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--luxury-pink);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.footer-brand {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-powered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
    font-size: 14px;
}

.powered-by {
    color: rgba(255, 255, 255, 0.7);
}

.powered-by:nth-child(2) {
    color: var(--luxury-green);
    font-weight: 900;
    font-size: 16px;
    margin: 0 5px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== LOAD MORE ===== */
.load-more-container {
    text-align: center;
    margin: 60px 0;
}

.load-more-button {
    padding: 20px 50px;
    background: var(--gradient-text);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition-luxury);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 45, 107, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.load-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.load-more-button:hover::before {
    left: 100%;
}

.load-more-button:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 45, 107, 0.4);
}

.load-more-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.load-more-button.loading {
    animation: buttonPulse 1.5s infinite;
}

@keyframes buttonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .site-title { font-size: 42px; }
    .section-title { font-size: 36px; }
}

@media (max-width: 992px) {
    .site-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .models-grid, .magazines-grid { 
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .models-grid, .magazines-grid { 
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    }
    .announcement-content { 
        animation: smoothMarquee 35s linear infinite;
    }
    .announcement-item { 
        padding: 4px 10px; 
        font-size: 13px;
    }
    .newsletter-form { flex-direction: column; }
    .social-icons-container { gap: 10px; }
    .social-icon { width: 45px; height: 45px; }
    .model-badges, .magazine-badges {
        top: 10px;
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .site-title { font-size: 32px; }
    .section-title { font-size: 28px; }
    .models-grid, .magazines-grid { 
        grid-template-columns: 1fr; 
        max-width: 272px; 
        margin: 0 auto; 
    }
    .announcement-bar { 
        height: 45px; 
        padding: 8px 0;
    }
    .announcement-content {
        gap: 20px;
    }
    .load-more-button { 
        padding: 18px 30px; 
        font-size: 14px; 
    }
    .model-card.elite, .magazine-card.elite {
        min-height: 520px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-text);
    border-radius: 10px;
    border: 3px solid rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff2d6b 0%, #ff6b9d 100%);
}

/* ===== ANIMATIONS ===== */
@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ============================================================================
   VERTIKALNI SLAJDER 3x3 - NOVO
   ============================================================================ */
.vertical-slider-section {
    margin: 60px 0 80px;
    position: relative;
    z-index: 5;
}

.slider-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.slider-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-text);
    border-radius: 2px;
}

.slider-label {
    display: inline-block;
    background: var(--gradient-text);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: labelPulse 3s infinite;
}

.slider-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* 3x3 GRID */
.slider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    height: 1350px; /* 3×420px + 2×25px gaps */
    position: relative;
}

/* SLIDER ITEM */
.slider-item {
    width: 100%;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-luxury);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.slider-item:nth-child(1) { animation-delay: 0.1s; }
.slider-item:nth-child(2) { animation-delay: 0.2s; }
.slider-item:nth-child(3) { animation-delay: 0.3s; }
.slider-item:nth-child(4) { animation-delay: 0.4s; }
.slider-item:nth-child(5) { animation-delay: 0.5s; }
.slider-item:nth-child(6) { animation-delay: 0.6s; }
.slider-item:nth-child(7) { animation-delay: 0.7s; }
.slider-item:nth-child(8) { animation-delay: 0.8s; }
.slider-item:nth-child(9) { animation-delay: 0.9s; }

.slider-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--luxury-pink);
    box-shadow: 
        var(--shadow-luxury),
        0 0 40px rgba(255, 45, 107, 0.4);
    z-index: 10;
}

.slider-item-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.slider-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-item:hover .slider-item-image {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

/* BADGE OVERLAY */
.slider-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 20;
    max-width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition-smooth);
}

/* BADGE COLORS */
.badge-hot {
    background: linear-gradient(135deg, #ff2d6b, #ff6b9d);
    color: white;
    border-color: #ff2d6b;
}

.badge-exclusive {
    background: linear-gradient(135deg, var(--luxury-blue), #4CC9F0);
    color: white;
    border-color: var(--luxury-blue);
}

.badge-new {
    background: linear-gradient(135deg, var(--luxury-green), #00FF88);
    color: #000;
    border-color: var(--luxury-green);
}

.badge-vip {
    background: linear-gradient(135deg, var(--luxury-purple), #8A2BE2);
    color: white;
    border-color: var(--luxury-purple);
}

.badge-warning {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
}

.badge-custom {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border-color: #666666;
}

/* DATE OVERLAY */
.slider-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.slider-item:hover .slider-date {
    background: rgba(255, 45, 107, 0.8);
    transform: scale(1.05);
}

/* NAVIGATION */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-text);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slider-prev::before,
.slider-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.slider-prev:hover::before,
.slider-next:hover::before {
    left: 100%;
}

.slider-prev:hover,
.slider-next:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 45, 107, 0.5);
}

.slider-pagination {
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--luxury-pink);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 45, 107, 0.7);
}

.slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* PROGRESS BAR */
.slider-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 30px auto 0;
    overflow: hidden;
    position: relative;
}

.slider-progress-bar {
    height: 100%;
    background: var(--gradient-text);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.slider-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* RESPONSIVE SLIDER */
@media (max-width: 992px) {
    .slider-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        height: 2200px;
        max-width: 600px;
    }
    
    .slider-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .slider-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 1fr);
        height: 4050px;
        max-width: 272px;
        gap: 20px;
    }
    
    .slider-title {
        font-size: 32px;
    }
    
    .slider-navigation {
        gap: 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .slider-grid {
        height: 3900px;
    }
    
    .slider-item {
        height: 400px;
    }
    
    .slider-title {
        font-size: 28px;
    }
    
    .slider-progress {
        width: 250px;
    }
}

/* SLIDER LOADING STATE */
.slider-loading {
    position: relative;
    min-height: 500px;
}

.slider-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--luxury-pink);
    border-radius: 50%;
    animation: sliderSpin 1s linear infinite;
}

@keyframes sliderSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== ADMIN BAR FIX ===== */
.admin-bar-fix {
    margin-top: 32px;
}

@media (max-width: 782px) {
    .admin-bar-fix {
        margin-top: 46px;
    }
}