/* 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: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px; /* Increased from 90px */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased gap */
    font-weight: 800;
    font-size: 1.4rem; /* Increased font size */
    color: #2c3e50;
}

.nav-logo .logo-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0 !important;
    transition: transform 0.3s ease;
    transform: none !important;
}

.nav-logo .logo-link:hover {
    transform: scale(1.1) !important;
}

.nav-logo .logo-link:focus,
.nav-logo .logo-link:active,
.nav-logo .logo-link:visited {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    transform: none !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
}

.nav-logo .logo-link::before {
    display: none !important;
}

.logo-image-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    border: none !important;
    border-radius: 15px;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none !important;
    border: none !important;
    border-radius: 15px;
}

.logo-text-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Increased gap */
}


.logo-text {
    font-size: 1.6rem; /* Increased from 1.3rem */
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem; /* Increased gap */
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600; /* Increased font weight */
    font-size: 1.1rem; /* Increased font size */
    padding: 0.8rem 1.5rem; /* Increased padding */
    border-radius: 30px; /* Increased border radius */
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-link:hover {
        background: rgba(102, 126, 234, 0.1);
    }
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

header p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Navigation */
nav {
    background: rgba(52, 73, 94, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

nav li {
    flex: 1;
    max-width: 200px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 18px 25px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    background: rgba(52, 152, 219, 0.1);
    border-bottom-color: #3498db;
    transform: translateY(-2px);
}

nav a.active {
    background: rgba(231, 76, 60, 0.1);
    border-bottom-color: #e74c3c;
    color: #ecf0f1;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover::before {
    opacity: 1;
}

/* Main Content */
main {
    padding: 50px 0;
    min-height: 60vh;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Tournament Flyer Section */
.tournament-flyer-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.tournament-flyer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db, #27ae60, #f39c12);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.tournament-flyer-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.flyer-container {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.flyer-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.tournament-flyer-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.flyer-container:hover .tournament-flyer-image {
    transform: scale(1.02);
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.flyer-container:hover .flyer-overlay {
    opacity: 1;
}

.flyer-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.flyer-actions .download-btn,
.flyer-actions .share-btn {
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.flyer-actions .download-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.flyer-actions .share-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* Tournament Info Grid */
.tournament-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #3498db, #27ae60, #f39c12);
    opacity: 0.8;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-card p {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
}

.info-card p strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Birthday Section */
.birthday-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
    margin: 50px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.birthday-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
    z-index: 1;
}

.birthday-section > * {
    position: relative;
    z-index: 2;
}

.birthday-section h2 {
    color: #e74c3c;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
}

.birthday-info h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.birthday-info h4 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
    margin: 50px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
}

.contact-info p strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Tournament Overview */
.tournament-overview {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.tournament-overview h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.overview-item {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.overview-item h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Rules Section */
.rules-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.rules-section h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.rules-list {
    display: grid;
    gap: 20px;
}

.rule-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.rule-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.rule-item ul {
    margin-left: 20px;
}

.rule-item li {
    margin-bottom: 8px;
}

/* Special Cards */
.special-cards {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.special-cards h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.card-item {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.card-item h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Prize Structure */
.prize-structure {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.prize-structure h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.prize-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.prize-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.prize-amount {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Flyer Page */
.flyer-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin: 40px 0;
}

.flyer-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.flyer-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.flyer-info h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.info-item h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Download Section */
.download-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin: 40px 0;
}

.download-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.download-btn {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background: #2980b9;
}

/* Share Section */
.share-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin: 40px 0;
}

.share-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-btn {
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background: #c0392b;
}

/* Registration Form */
.registration-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.registration-form h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.team-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.team-section h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.player-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.submit-btn {
    background: #27ae60;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #229954;
}

.registration-note {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 40px 0;
}

.registration-note h3 {
    color: #856404;
    margin-bottom: 15px;
}

.registration-note ul {
    margin-left: 20px;
}

.registration-note li {
    margin-bottom: 8px;
    color: #856404;
}

/* Players List */
.stats-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.stats-section h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.tournament-info {
    background: rgba(52, 152, 219, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    text-align: center;
    margin-top: 20px;
}

.tournament-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.tournament-info p {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.refresh-section {
    text-align: center;
    margin: 30px 0;
}

.refresh-btn {
    background: #3498db;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.refresh-btn:hover {
    background: #2980b9;
}

.last-updated {
    margin-top: 15px;
    color: #7f8c8d;
}

.players-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.players-section h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.team-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team-name {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: bold;
}

.team-number {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.player-info,
.contact-info,
.payment-info {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 10px;
    border-left: 3px solid #3498db;
}

.player-info h4,
.contact-info h4,
.payment-info h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.player-info p,
.contact-info p,
.payment-info p {
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 0.95rem;
}

.payment-info {
    border-left-color: #27ae60;
}

.payment-info a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

.payment-info a:hover {
    text-decoration: underline;
}

.no-players {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #bdc3c7;
}

.no-players h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.no-players p {
    margin-bottom: 20px;
    color: #7f8c8d;
}

.register-btn {
    background: #27ae60;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.register-btn:hover {
    background: #229954;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #3498db, #27ae60, #f39c12);
}

footer p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1.1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        max-width: none;
    }

    nav a {
        padding: 15px 20px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    nav a:hover,
    nav a.active {
        border-left-color: #3498db;
        border-bottom-color: transparent;
    }

    .page-header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .page-header h2 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .tournament-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .info-card {
        padding: 25px;
    }

    .birthday-section,
    .contact-section {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .birthday-section h2 {
        font-size: 1.8rem;
    }

    .birthday-info h4 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .overview-grid,
    .cards-grid,
    .stats-grid,
    .info-grid,
    .players-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons,
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .player-fields {
        grid-template-columns: 1fr;
    }

    /* Mobile optimization for tournament flyer */
    .tournament-flyer-section {
        padding: 20px;
        margin: 20px 0;
    }

    .tournament-flyer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .flyer-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .tournament-flyer-image {
        width: 100%;
        height: auto;
    }

    .flyer-actions {
        flex-direction: column;
        gap: 10px;
    }

    .flyer-actions .download-btn,
    .flyer-actions .share-btn {
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 200px;
    }

    .flyer-overlay {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    .page-header {
        padding: 20px 15px;
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .info-card {
        padding: 20px;
    }

    .birthday-section,
    .contact-section {
        padding: 25px 15px;
    }

    .birthday-section h2 {
        font-size: 1.6rem;
    }

    .birthday-info h4 {
        font-size: 1.8rem;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .tournament-flyer-section {
        padding: 15px;
    }

    .tournament-flyer-section h3 {
        font-size: 1.3rem;
    }

    .flyer-actions .download-btn,
    .flyer-actions .share-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Payment Info Section */
.payment-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-info h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.payment-method {
    background: rgba(248, 249, 250, 0.8);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(39, 174, 96, 0.2);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    border-color: #27ae60;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

.payment-method h4 {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-method p {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.payment-note {
    text-align: center;
    color: #e74c3c;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(231, 76, 60, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

/* Google Form Section */
.google-form-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-form-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.google-form-section p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ecf0f1;
    margin-bottom: 30px;
}

.google-form-iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-note {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 20px;
}

.form-note h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.form-note ul {
    margin-left: 20px;
}

.form-note li {
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.5;
}

.form-note li::marker {
    color: #3498db;
}

/* Mobile optimization for Google Form */
@media (max-width: 768px) {
    .google-form-section {
        padding: 20px;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .google-form-iframe {
        height: 600px;
    }
    
    .form-note {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .google-form-section {
        padding: 15px;
    }
    
    .form-container {
        padding: 10px;
    }
    
    .google-form-iframe {
        height: 500px;
    }
    
    .form-note {
        padding: 15px;
    }
}
