/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Container for all content (except full-width elements) */
.main-container {
    width: 100%;
    max-width: 1600px; /* Increased from 1200px for larger screens */
    margin: 0 auto;
    padding: 0 20px;
}

/* Register Wrapper */
.register-wrapper {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    padding: 50px;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.register-wrapper form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.register-wrapper input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.register-wrapper input:focus {
    outline: none;
    border-color: #1e3c72;
}

.register-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #1e3c72;
}

.register-wrapper ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.register-wrapper ul li {
    margin: 10px 0;
}

.register-wrapper button {
    width: 100%;
    padding: 15px;
    background-color: #1e3c72;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.register-wrapper button:hover {
    background-color: #163061;
}

/* Lado Styles */
.lado {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    padding: 50px;
    max-width: 1200px; /* Increased width for larger screens */
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Login Form Wrapper */
.login-form-wrapper {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    padding: 50px;
    max-width: 1000px; /* Increased from 700px */
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.login-form-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px; /* Slightly larger for big screens */
    color: #1e3c72;
}

.login-form-wrapper p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    font-size: 18px; /* Slightly larger */
}

.login-form-wrapper * {
    box-sizing: border-box;
}

.login-form-wrapper .container {
    position: relative;
    background-color: #ffffff;
    padding: 50px 40px; /* More padding for larger screens */
    border-radius: 10px;
}

.login-form-wrapper input,
.login-form-wrapper .btn {
    width: 100%;
    padding: 18px; /* Larger input fields */
    border: none;
    border-radius: 8px;
    margin: 10px 0; /* More spacing */
    font-size: 18px; /* Larger text */
    display: inline-block;
    transition: all 0.3s ease;
}

.login-form-wrapper input:hover,
.login-form-wrapper .btn:hover {
    opacity: 1;
}

.login-form-wrapper .fb {
    background-color: #3b5998;
    color: white;
}

.login-form-wrapper .twitter {
    background-color: #1da1f2;
    color: white;
}

.login-form-wrapper .google {
    background-color: #db4437;
    color: white;
}

.login-form-wrapper input[type=submit] {
    background-color: #04AA6D;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px; /* Larger submit button */
}

.login-form-wrapper input[type=submit]:hover {
    background-color: #028b57;
}

.login-form-wrapper .col {
    float: left;
    width: 50%;
    padding: 0 30px; /* More padding between columns */
}

.login-form-wrapper .row::after {
    content: "";
    display: table;
    clear: both;
}

.login-form-wrapper .vl {
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translate(-50%);
    border: 1px solid #ddd;
    height: 70%;
}

.login-form-wrapper .vl-innertext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 8px 12px; /* Slightly larger */
    font-weight: bold;
    font-size: 18px; /* Larger text */
}

.login-form-wrapper .hide-md-lg {
    display: none;
}

.login-form-wrapper .bottom-container {
    text-align: center;
    margin-top: 30px; /* More spacing */
}

.login-form-wrapper .bottom-container a.btn {
    background: #1e3c72;
    color: white;
    margin: 10px; /* More spacing */
    padding: 15px 25px; /* Larger buttons */
    font-size: 16px;
    text-decoration: none;
}

.login-form-wrapper .bottom-container a.btn:hover {
    background: #163061;
}

/* Header */
header {
    background: linear-gradient(135deg, #00ff00 0%, #2a5298 100%);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px; /* Increased for larger screens */
    margin: 0 auto;
    padding: 0 40px; /* More padding on sides */
}

.logo {
    font-size: 28px; /* Slightly larger logo */
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: #ff6b6b;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 40px; /* More spacing between nav items */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px; /* Larger nav text */
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6b6b;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px; /* Larger toggle */
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 800px; /* Taller hero on large screens */
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero h1 {
    font-size: 64px; /* Much larger for big screens */
    margin-bottom: 30px; /* More spacing */
    text-transform: uppercase;
    line-height: 1.2;
}

.hero p {
    font-size: 24px; /* Larger paragraph */
    margin-bottom: 40px; /* More spacing */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 16px 40px; /* Larger button */
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px; /* Larger text */
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 100px 0; /* More padding */
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px; /* More spacing */
}

.section-title h2 {
    font-size: 42px; /* Larger title */
    color: #1e3c72;
    margin-bottom: 20px; /* More spacing */
}

.section-title p {
    color: #777;
    max-width: 800px; /* Wider text block */
    margin: 0 auto;
    font-size: 20px; /* Larger text */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* More spacing between cards */
    max-width: 1400px; /* Wider grid */
    margin: 0 auto;
}

.feature-card {
    background: #f9f9f9;
    padding: 40px 30px; /* More padding */
    border-radius: 15px; /* More rounded corners */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* More pronounced shadow */
}

.feature-icon {
    font-size: 60px; /* Larger icon */
    color: #1e3c72;
    margin-bottom: 30px; /* More spacing */
}

.feature-card h3 {
    margin-bottom: 20px; /* More spacing */
    color: #333;
    font-size: 24px; /* Larger heading */
}

.feature-card p {
    font-size: 18px; /* Larger text */
}

/* Schedule Section */
.schedule {
    padding: 100px 0; /* More padding */
    background: #f5f5f5;
}

.matches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* More spacing */
    max-width: 1400px; /* Wider grid */
    margin: 0 auto;
}

.match-card {
    background: white;
    border-radius: 15px; /* More rounded */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    display: flex;
}

.match-date {
    background: #00ff00;
    color: white;
    padding: 30px; /* More padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px; /* Wider date section */
}

.match-date .day {
    font-size: 36px; /* Larger day */
    font-weight: bold;
}

.match-date .month {
    text-transform: uppercase;
    font-size: 16px; /* Larger month */
}

.match-info {
    padding: 30px; /* More padding */
    flex-grow: 1;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* More spacing */
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.team-logo {
    width: 70px; /* Larger logos */
    height: 70px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* More spacing */
}

.vs {
    font-weight: bold;
    font-size: 24px; /* Larger VS text */
}

.match-time {
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 15px; /* More spacing */
    font-size: 18px; /* Larger text */
}

/* Contact Section */
.contact {
    padding: 100px 0; /* More padding */
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px; /* More spacing */
    max-width: 1400px; /* Wider container */
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px; /* Larger heading */
    margin-bottom: 30px; /* More spacing */
    color: #1e3c72;
}

.contact-details {
    margin-bottom: 40px; /* More spacing */
}

.contact-details p {
    margin-bottom: 15px; /* More spacing */
    display: flex;
    align-items: center;
    font-size: 18px; /* Larger text */
}

.contact-details i {
    margin-right: 15px; /* More spacing */
    color: #ff6b6b;
    font-size: 20px; /* Larger icons */
}

.social-links a {
    display: inline-block;
    margin-right: 20px; /* More spacing */
    color: #1e3c72;
    font-size: 24px; /* Larger icons */
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff6b6b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px; /* Larger inputs */
    margin-bottom: 25px; /* More spacing */
    border: 1px solid #ddd;
    border-radius: 8px; /* More rounded */
    font-size: 18px; /* Larger text */
}

.contact-form textarea {
    height: 200px; /* Taller textarea */
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #00ff00 0%, #2a5298 100%);
    color: Black;
    padding: 40px 0; /* More padding */
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px; /* Wider footer */
    margin: 0 auto;
    padding: 0 40px; /* More padding */
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 30px; /* More spacing */
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 18px; /* Larger text */
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b6b;
}

/* Media Queries */
/* For screens wider than 1920px */
@media (min-width: 1921px) {
    .main-container, 
    .header-container,
    .hero-content,
    .features-grid,
    .matches,
    .contact-container,
    .footer-content {
        max-width: 1800px;
    }
    
    .hero h1 {
        font-size: 72px;
    }
    
    .features-grid {
        gap: 60px;
    }
}

/* Standard desktop sizes (1025px - 1920px) - default styles cover this */

/* Tablet sizes (769px - 1024px) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .matches {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
}

/* Mobile sizes (481px - 768px) */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    nav {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 30%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #00ff00 0%, #2a5298 100%);
        transition: all 0.5s;
        z-index: 999;
        border-radius:0px 15px 15px 0px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .register-wrapper,
    .login-form-wrapper,
    .lado {
        padding: 30px 20px;
    }
    
    .login-form-wrapper .col {
        width: 100%;
        padding: 0;
    }
    
    .login-form-wrapper .vl {
        display: none;
    }
}

/* Small mobile sizes (up to 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links li {
        margin: 10px;
    }
    
    .register-wrapper,
    .login-form-wrapper,
    .lado {
        margin: 30px auto;
        padding: 20px 15px;
    }
}