/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #ffd700;
    background-color: rgba(255,255,255,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Keywords Content Section */
.keywords-content {
    padding: 80px 0;
    background: white;
}

.keywords-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.keyword-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #1e3c72;
    transition: transform 0.3s ease;
}

.keyword-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.keyword-section h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.keyword-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-grid {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info, .contact-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30,60,114,0.08);
    padding: 2.5rem 2rem;
    min-width: 320px;
    flex: 1 1 340px;
    max-width: 500px;
}

.contact-info h2, .contact-form h2 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item h3 {
    color: #2a5298;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    color: #2a5298;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 0.3rem 1rem;
    text-decoration: none;
    border: 1px solid #e0e6ed;
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: #ffd700;
    color: #1e3c72;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #1e3c72;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #e0e6ed;
    font-size: 1rem;
    background: #f8f9fa;
    margin-top: 0.2rem;
}

.form-group textarea {
    min-height: 90px;
}

@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
        gap: 1.2rem;
    }
    .contact-info, .contact-form {
        max-width: 100%;
        min-width: 0;
        padding: 1.2rem 0.7rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3c72;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .keywords-content h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .keyword-section {
        padding: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .keywords-content h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.keyword-section {
    animation: fadeInUp 0.6s ease-out;
}

/* SEO Optimization */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: all 0.3s ease;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* News Card Styles */
.news-content {
    padding: 60px 0 40px 0;
    background: #f8f9fa;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.news-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(30,60,114,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    margin-bottom: 1.5rem;
}
.news-card.featured {
    grid-column: span 2;
    min-height: 220px;
}
.news-image {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf0fa;
    min-height: 160px;
}
.news-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30,60,114,0.08);
}
.news-content .news-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1.5rem;
}
.news-content h2, .news-content h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}
.news-content p {
    margin-bottom: 1rem;
}
.read-more {
    color: #2a5298;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.read-more:hover {
    color: #ffd700;
}
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card.featured {
        grid-column: span 1;
    }
    .news-card {
        flex-direction: column;
    }
    .news-image {
        min-height: 120px;
        justify-content: flex-start;
    }
}

/* Page Header (Hero for subpages) */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 110px 0 40px 0;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(30,60,114,0.08);
}
.page-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.12);
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.92;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .page-header {
        padding: 80px 0 30px 0;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header p {
        font-size: 1rem;
    }
}

/* Liga Page Section Styles */
.league-content {
    padding: 40px 0 60px 0;
    background: #f8f9fa;
}
.league-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30,60,114,0.08);
    margin-bottom: 2.5rem;
    padding: 2.5rem 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.league-section:hover {
    box-shadow: 0 8px 32px rgba(30,60,114,0.13);
    transform: translateY(-4px);
}
.league-section h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.league-section h3 {
    color: #2a5298;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.league-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}
.league-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 8px rgba(30,60,114,0.05);
    min-width: 180px;
    flex: 1 1 180px;
}
.standings {
    margin-top: 2rem;
}
.standings-table {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
}
.table-header, .table-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    padding: 0.3rem 0;
}
.table-header {
    font-weight: bold;
    color: #1e3c72;
    border-bottom: 2px solid #e0e6ed;
}
.table-row {
    border-bottom: 1px solid #e0e6ed;
}
@media (max-width: 900px) {
    .league-info {
        flex-direction: column;
        gap: 1rem;
    }
    .league-section {
        padding: 1.2rem 0.7rem;
    }
    .standings-table {
        font-size: 0.95rem;
    }
}

/* Statistik/Info/Content Card Styles */
.stats-section, .info-section, .about-section, .contact-section, .privacy-section, .terms-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30,60,114,0.08);
    margin-bottom: 2.5rem;
    padding: 2.5rem 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.stats-section:hover, .info-section:hover, .about-section:hover, .contact-section:hover, .privacy-section:hover, .terms-section:hover {
    box-shadow: 0 8px 32px rgba(30,60,114,0.13);
    transform: translateY(-4px);
}
.stats-section h2, .info-section h2, .about-section h2, .contact-section h2, .privacy-section h2, .terms-section h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.stats-section h3, .info-section h3, .about-section h3, .contact-section h3, .privacy-section h3, .terms-section h3 {
    color: #2a5298;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.stats-section p, .info-section p, .about-section p, .contact-section p, .privacy-section p, .terms-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}
@media (max-width: 900px) {
    .stats-section, .info-section, .about-section, .contact-section, .privacy-section, .terms-section {
        padding: 1.2rem 0.7rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30,60,114,0.08);
    margin: 2.5rem auto 0 auto;
    padding: 2.5rem 2rem;
    max-width: 900px;
}
.faq-section h2 {
    color: #1e3c72;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    border-bottom: 1px solid #e0e6ed;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.faq-item h3 {
    color: #2a5298;
    font-size: 1.13rem;
    margin-bottom: 0.2rem;
    font-weight: bold;
}
.faq-item p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .faq-section {
        padding: 1.2rem 0.7rem;
    }
}

/* Home Contact Section Styles */
#kontak.contact {
    background: #f8f9fa;
    padding: 60px 0 60px 0;
}
#kontak .container {
    max-width: 700px;
    margin: 0 auto;
}
#kontak h2 {
    color: #1e3c72;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}
#kontak .contact-content {
    display: flex;
    justify-content: center;
}
#kontak .contact-info {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(30,60,114,0.10);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
#kontak .contact-item h3 {
    color: #2a5298;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    text-align: center;
}
#kontak .contact-item p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    text-align: center;
}
#kontak .social-icons {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}
#kontak .social-icon {
    color: #2a5298;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 0.3rem 1rem;
    text-decoration: none;
    border: 1px solid #e0e6ed;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}
#kontak .social-icon:hover {
    background: #ffd700;
    color: #1e3c72;
}
@media (max-width: 700px) {
    #kontak .container {
        padding: 0 10px;
    }
    #kontak .contact-info {
        padding: 1.2rem 0.7rem;
    }
} 