.banner {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.banner > img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
}
.banner-content {
    z-index: 1;
    padding: 20px;
    animation: fadeIn 1s ease-out;
}
.banner-logo {
    width: 150px;
    margin-bottom: 20px;
}
.banner-text-centered h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 10px 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.banner-text-centered p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}
.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-color);
}
.status h3 {
    color: #4ade80;
    margin: 20px 0;
    font-size: 1.2rem;
    display: inline-block;
}
.links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.novinky, .social-sites, .frakce {
    padding: 40px 0;
    text-align: center;
    content-visibility: auto;
}
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.novinky {
    background-color: var(--bg-color);
}
.novinky h1, .social-sites h2, .frakce h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.novinky h1::after, .social-sites h2::after, .frakce h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}
.novinka-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.novinka-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}
.novinka-card:hover {
    border-color: var(--primary-color);
}
.novinka-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.novinka-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.novinka-card .date {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}
.social-sites {
    background: linear-gradient(to bottom, var(--bg-color), #131c31);
}
.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-card:hover {
    transform: scale(1.02);
}
.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
    z-index: 0;
}
.social-card > * {
    position: relative;
    z-index: 1;
}
.social-card .icon-wrapper {
    margin-bottom: 20px;
}
.social-card .icon-wrapper img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}
.social-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.social-card .stats {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
    background: rgba(0,0,0,0.4);
    padding: 5px 15px;
    border-radius: 20px;
}
.social-card .desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.social-card.discord {
    background: linear-gradient(135deg, #404EED 0%, #2f38ad 100%);
    box-shadow: 0 10px 30px rgba(64, 78, 237, 0.2);
}
.social-card.discord:hover {
    box-shadow: 0 15px 35px rgba(64, 78, 237, 0.4);
}
.social-card.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}
.social-card.youtube:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}
.social-card.youtube .icon-wrapper img {
    filter: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.social-card.tiktok {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.social-card.tiktok:hover {
    border-color: #25F4EE;
    box-shadow: 0 15px 35px rgba(37, 244, 238, 0.2);
}
.frakce {
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../content/images/banner.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
}
.frakce .subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}
.frakce p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}
