* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #0f5132 0%, #198754 50%, #0f5132 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

main {
    padding: 40px;
}

.link-section {
    margin-bottom: 40px;
}

.intro-section {
    margin-bottom: 40px;
    text-align: center;
}

.intro-section h2 {
    color: #0f5132;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.intro-section p {
    color: #666;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid #198754;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 81, 50, 0.2);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #0f5132;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.score-section {
    margin-bottom: 40px;
}

.score-section h2 {
    color: #0f5132;
    margin-bottom: 30px;
    font-size: 2em;
}

.match-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 40px;
    border-left: 5px solid #198754;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.match-info h3 {
    color: #0f5132;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.match-info p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1.05em;
}

.match-detail {
    color: #666;
    font-style: italic;
}

.match-action {
    text-align: center;
}

.view-scores-btn {
    display: inline-block;
    background: linear-gradient(135deg, #198754 0%, #0f5132 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 81, 50, 0.3);
}

.view-scores-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 81, 50, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #198754 100%);
}

.link-section h2 {
    color: #0f5132;
    margin-bottom: 30px;
    font-size: 2em;
}

.link-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #198754;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 81, 50, 0.2);
}

.link-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.link-card p {
    color: #666;
    margin-bottom: 20px;
}

.external-link {
    display: inline-block;
    background: linear-gradient(135deg, #198754 0%, #0f5132 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 81, 50, 0.3);
}

.external-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 81, 50, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #198754 100%);
}

.redirect-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.redirect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

.redirect-btn:active {
    transform: translateY(0);
}

.info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.info-section h2 {
    color: #0f5132;
    margin-bottom: 20px;
    font-size: 2em;
}

.info-section p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section li {
    color: #666;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.info-section li:before {
    content: "⚽";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
    font-size: 1.2em;
}

footer {
    background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
    color: white;
    text-align: center;
    padding: 30px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    main {
        padding: 20px;
    }

    .link-card {
        padding: 20px;
    }
}

