* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.main-content {
    margin-top: 80px;
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.main-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #ffd700;
    color: #333;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
}

.featured-analysis {
    margin-bottom: 3rem;
}

.featured-analysis h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.analysis-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.analysis-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.card-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.card-icon img {
    width: 100%;
}

.analysis-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.analysis-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
}

.stats-dashboard {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    color: white;
}

.stats-dashboard h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.predictions {
    margin-bottom: 3rem;
}

.predictions h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.predictions-container {
    display: grid;
    gap: 1.5rem;
}

.match-prediction {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.match-image {
    max-width: 400px;
}

.match-image img {
    width: 100%;
}

.teams {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team {
    font-weight: 600;
    color: #333;
}

.vs {
    color: #667eea;
    font-weight: 700;
}

.prediction-details {
    text-align: right;
}

.prediction {
    display: block;
    font-weight: 600;
    color: #667eea;
}

.confidence {
    font-size: 0.9rem;
    color: #666;
}

.expert-insights {
    margin-bottom: 3rem;
}

.expert-insights h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.insights-grid {
    display: grid;
    gap: 1.5rem;
}

.insight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.expert-avatar img {
    width: 100%;
    border-radius: 50%;
}

.insight-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.insight-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.insight-date {
    font-size: 0.8rem;
    color: #999;
}

.performance-charts {
    margin-bottom: 3rem;
}

.performance-charts h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #ffd700;
    color: #333;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.news-sidebar {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-header h3 {
    color: #333;
    font-size: 1.3rem;
}

.loading-indicator {
    color: #667eea;
}

.news-container {
    max-height: 600px;
    overflow-y: auto;
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news-item:hover {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #999;
}

.news-source {
    font-weight: 500;
}

.news-date {
    font-style: italic;
}

.news-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.news-link:hover {
    text-decoration: underline;
}

.news-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.news-footer small {
    color: #999;
    font-size: 0.7rem;
}

.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.analysis-card:hover .card-icon {
    animation: pulse 0.6s ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1400px) {
    .performance-charts {
        display: none;
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

html {
    scroll-behavior: smooth;
}

.news-container::-webkit-scrollbar {
    width: 6px;
}

.news-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.news-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

.news-container::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

.about-page {
    padding: 2rem 0;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 1.5rem;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-elements {
    position: absolute;
    width: 200px;
    height: 200px;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-element:nth-child(1) {
    top: 0;
    right: 0;
}

.floating-element:nth-child(2) {
    bottom: 0;
    left: 0;
}

.floating-element:nth-child(3) {
    top: 50%;
    left: -20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.mission-vision {
    margin-bottom: 4rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0;
}

.card-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-points,
.vision-points {
    list-style: none;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.mission-points i,
.vision-points i {
    color: #10b981;
    font-size: 0.9rem;
}

.vision-points i {
    color: #f59e0b;
}

.our-story {
    margin-bottom: 4rem;
}

.story-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.story-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-year {
    position: absolute;
    left: -1rem;
    top: 0;
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

.story-visual {
    position: sticky;
    top: 2rem;
}

.achievement-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.achievement-card i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.achievement-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.achievement-card p {
    color: #718096;
    font-size: 0.9rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.member-avatar img {
    width: 100%;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e2e8f0;
}

.values-section {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.value-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.value-stats {
    background: #f7fafc;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.value-stats span {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-page {
    padding: 2rem 0;
}

.contact-form-section {
    margin-bottom: 4rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.company-info-section {
    margin-bottom: 4rem;
}

.company-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 700;
}

.info-header p {
    font-size: 1.1rem;
    color: #718096;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.info-content p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.info-content small {
    color: #718096;
    font-size: 0.8rem;
}

.social-contact {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.social-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f7fafc;
    border-radius: 25px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

.success-notification,
.info-notification,
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid #10b981;
    max-width: 400px;
}

.info-notification {
    border-left-color: #3182ce;
}

.notification.error {
    border-left-color: #ef4444;
}

.notification.warning {
    border-left-color: #f59e0b;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.notification-content i {
    font-size: 1.2rem;
    color: #10b981;
}

.info-notification .notification-content i {
    color: #3182ce;
}

.notification.error .notification-content i {
    color: #ef4444;
}

.notification.warning .notification-content i {
    color: #f59e0b;
}

.notification-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.notification-text p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.close-notification {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.close-notification:hover {
    background: #f7fafc;
    color: #4a5568;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.analysis-page {
    padding: 2rem 0;
}

.analysis-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.analysis-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.featured-analysis-section {
    margin-bottom: 4rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5576c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-badge.popular {
    background: #f59e0b;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.date {
    color: #718096;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

.article-content p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more-btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #5a67d8;
}

.league-analysis {
    margin-bottom: 4rem;
}

.league-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.league-content {
    position: relative;
}

.league-panel {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.league-panel.active {
    display: block;
}

.league-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 600;
}

.stat-card p {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.stat-card span {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
}

.league-analysis-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.league-analysis-text p {
    color: #4a5568;
    line-height: 1.7;
}

.player-analysis {
    margin-bottom: 4rem;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.player-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.player-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #2d3748;
    font-weight: 600;
}

.player-info p {
    color: #718096;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.player-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.performance-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.performance-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.performance-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.performance-indicator span {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.match-analysis {
    margin-bottom: 4rem;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.match-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.match-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.team img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.team {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-name {
    font-weight: 600;
    color: #2d3748;
}

.team-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.vs {
    font-weight: 700;
    color: #718096;
}

.match-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #718096;
}

.match-stats {
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.stat-label {
    min-width: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-bar {
    flex: 1;
    height: 20px;
    background: #f7fafc;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
}

.stat-fill-home,
.stat-fill-away {
    height: 100%;
    position: absolute;
    top: 0;
    transition: width 1.2s ease-out;
}

.stat-fill-home {
    background: #667eea;
    left: 0;
}

.stat-fill-away {
    background: #f5576c;
    right: 0;
}

.stat-values {
    min-width: 80px;
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 600;
    text-align: right;
}

.analysis-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.analysis-link:hover {
    color: #5a67d8;
}

.analysis-tools {
    margin-bottom: 4rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.tool-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.tool-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tool-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.predictions-page {
    padding: 2rem 0;
}

.predictions-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.predictions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-rate {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.rate-circle {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.rate-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.rate-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.todays-predictions {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.todays-predictions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.todays-predictions>* {
    position: relative;
    z-index: 1;
}

.todays-predictions .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.todays-predictions .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
    position: relative;
}

.todays-predictions .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.date-selector {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.date-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.date-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.date-btn:hover::before,
.date-btn.active::before {
    left: 0;
}

.date-btn:hover,
.date-btn.active {
    color: white;
    transform: translateY(-2px);
}

.date-btn.active {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.predictions-grid {
    display: grid;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.prediction-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prediction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.prediction-card.high-confidence::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.prediction-card.medium-confidence::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
}

.prediction-card.low-confidence::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.prediction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.prediction-card:hover::before {
    height: 6px;
}

.confidence-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.high-confidence .confidence-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.medium-confidence .confidence-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.low-confidence .confidence-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.confidence-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.prediction-card:hover .confidence-badge::before {
    left: 100%;
}

.match-info {
    margin-bottom: 2rem;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.team {
    flex: 1;
    text-align: center;
}

.team:first-child {
    text-align: left;
}

.team:last-child {
    text-align: right;
}

.team-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.team-form {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.team:first-child .team-form {
    justify-content: flex-start;
}

.team:last-child .team-form {
    justify-content: flex-end;
}

.form-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.form-indicator.win {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.form-indicator.draw {
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
}

.form-indicator.loss {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.form-indicator:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    min-width: 120px;
}

.match-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vs {
    font-size: 0.9rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 1px;
}

.match-date {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.league-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.league {
    font-weight: 700;
    color: #1a202c;
    font-size: 0.9rem;
}

.round {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.prediction-details {
    margin-bottom: 2rem;
}

.main-prediction {
    margin-bottom: 1.5rem;
}

.main-prediction h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.prediction-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prediction-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.prediction-option:hover::before {
    left: 100%;
}

.prediction-option .option {
    font-weight: 700;
    font-size: 1rem;
}

.prediction-option .confidence {
    font-weight: 800;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
}

.additional-predictions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.prediction-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.prediction-row:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.prediction-type {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.prediction-value {
    font-weight: 700;
    color: #1a202c;
    font-size: 0.9rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.prediction-reasoning {
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.prediction-reasoning h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prediction-reasoning h5::before {
    content: '💡';
    font-size: 1.2rem;
}

.prediction-reasoning ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prediction-reasoning li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #047857;
    font-size: 0.9rem;
    line-height: 1.5;
}

.prediction-reasoning li:last-child {
    margin-bottom: 0;
}

.prediction-reasoning li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.delay-0 {
    animation-delay: 0s;
}

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

.performance-92 {
    width: 92%;
}

.performance-88 {
    width: 88%;
}

.performance-95 {
    width: 95%;
}

.possession-home-65 {
    width: 65%;
}

.possession-away-35 {
    width: 35%;
}

.pass-home-78 {
    width: 78%;
}

.pass-away-72 {
    width: 72%;
}

.possession-home-58 {
    width: 58%;
}

.possession-away-42 {
    width: 42%;
}

.pass-home-82 {
    width: 82%;
}

.pass-away-79 {
    width: 79%;
}

@media (max-width: 1200px) {
    .predictions-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }

    .teams {
        gap: 1.5rem;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .todays-predictions {
        padding: 3rem 0;
    }

    .todays-predictions .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .todays-predictions .section-header h2 {
        font-size: 2rem;
    }

    .date-selector {
        width: 100%;
        justify-content: center;
    }

    .date-btn {
        flex: 1;
        text-align: center;
    }

    .predictions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prediction-card {
        padding: 1.5rem;
    }

    .team {
        text-align: center !important;
    }

    .team-form {
        justify-content: center !important;
    }

    .vs-section {
        order: -1;
        margin-bottom: 1rem;
    }

    .league-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .prediction-option {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .prediction-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .todays-predictions .section-header h2 {
        font-size: 1.8rem;
    }

    .date-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .prediction-card {
        padding: 1rem;
        border-radius: 15px;
    }

    .team-name {
        font-size: 1rem;
    }

    .form-indicator {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .vs-section {
        padding: 0.75rem;
        min-width: 100px;
    }

    .match-time {
        font-size: 1rem;
    }

    .prediction-reasoning {
        padding: 1rem;
    }

    .prediction-reasoning li {
        font-size: 0.8rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prediction-card {
    animation: slideInUp 0.6s ease-out;
}

.prediction-card:nth-child(1) {
    animation-delay: 0.1s;
}

.prediction-card:nth-child(2) {
    animation-delay: 0.2s;
}

.prediction-card:nth-child(3) {
    animation-delay: 0.3s;
}

.prediction-card:hover .team-name {
    color: #667eea;
    transition: color 0.3s ease;
}

.prediction-card:hover .confidence-badge {
    transform: scale(1.05);
}

.prediction-card:hover .prediction-option {
    transform: scale(1.02);
}

.prediction-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.prediction-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.weekly-predictions {
    margin-bottom: 4rem;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.weekly-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.weekly-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.weekly-card.premium {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.weekly-card.premium::before {
    content: 'POPÜLER';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
}

.weekly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.weekly-header h3 {
    font-size: 1.4rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

.weekly-card.premium .package-price {
    color: #f59e0b;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.package-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.weekly-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.weekly-stats .stat {
    text-align: center;
}

.weekly-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    display: block;
    margin-bottom: 0.25rem;
}

.weekly-stats .stat-label {
    font-size: 0.8rem;
    color: #718096;
}

.premium-btn {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.prediction-history {
    margin-bottom: 4rem;
}

.history-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.history-filter {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.history-filter:hover,
.history-filter.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.history-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.history-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.history-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
}

.history-stat .stat-label {
    color: #718096;
    font-size: 0.9rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #10b981;
}

.history-item.incorrect {
    border-left-color: #ef4444;
}

.history-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.match-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.match-result .teams {
    font-weight: 600;
    color: #2d3748;
}

.result-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: #10b981;
}

.history-item.incorrect .result-badge {
    background: #ef4444;
}

.prediction-made {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.confidence {
    font-weight: 600;
    color: #667eea;
}

.match-date {
    font-size: 0.8rem;
    color: #718096;
}

.prediction-algorithm {
    margin-bottom: 4rem;
}

.algorithm-explanation {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.algorithm-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
}

.algorithm-factors h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    text-align: center;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.factor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.factor:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

.factor i {
    color: #667eea;
    font-size: 1.1rem;
}

.factor span {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.betting-tips {
    margin-bottom: 4rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d69e2e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.tip-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.tip-card p {
    color: #4a5568;
    line-height: 1.7;
}

.tool-modal,
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f7fafc;
    color: #4a5568;
}

.modal-body {
    padding: 2rem;
}

.coming-soon {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    margin-top: 1rem;
}

.coming-soon i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.coming-soon h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.coming-soon p {
    color: #718096;
}

.premium-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.premium-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.premium-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.premium-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.pricing {
    display: flex;
    gap: 1rem;
}

.price-option {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: #667eea;
}

.price-option.recommended {
    border-color: #f59e0b;
    background: #fffbeb;
    position: relative;
}

.price-option.recommended::before {
    content: 'ÖNERİLEN';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.price-option h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
}

.discount {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn-secondary,
.btn-primary {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #edf2f7;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.footer {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-year {
        position: static;
        margin-bottom: 0.5rem;
    }

    .timeline-item {
        padding-left: 1rem;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-sidebar {
        width: 100%;
    }

    .news-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .match-teams {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing {
        flex-direction: column;
    }

    .modal-footer {
        flex-direction: column;
    }

    .featured-grid,
    .values-grid,
    .team-grid,
    .mission-vision-grid,
    .player-grid,
    .weekly-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-header {
        display: block;
    }

    .refund-conditions,
    .partial-refund-scenarios,
    .request-methods,
    .special-cases,
    .faq-grid,
    .emergency-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .match-prediction {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
        margin: 0 15px;
    }

    .algorithm-steps {
        grid-template-columns: 1fr;
    }

    .factors-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .card {
        padding: 1.25rem;
    }

    .about-hero {
        padding: 2.5rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 1.75rem;
        margin: 0 12px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .main-section {
        padding: 0;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .newsletter-form {
        max-width: 300px;
    }

    .modal-content {
        margin: 1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        max-width: 280px;
    }

    .rate-circle {
        width: 90px;
        height: 90px;
    }

    .hero-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
}

.grid-responsive {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 320px) {
    .grid-responsive {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.responsive-text {
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    line-height: 1.6;
}

.responsive-heading {
    font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: 1.2;
}

.responsive-subheading {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.3;
}

@media (max-width: 480px) {

    button,
    .btn,
    .cta-button,
    .submit-btn,
    .premium-btn,
    .tool-btn,
    .filter-btn,
    .tab-btn,
    .date-btn,
    .history-filter {
        min-height: 48px;
        min-width: 48px;
        padding: 0.75rem 1rem;
    }

    .nav-link {
        min-height: 48px;
        padding: 0.75rem 1rem;
    }

    .social-links a,
    .social-link {
        min-height: 48px;
        min-width: 48px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    p {
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .card:hover,
    .prediction-card:hover,
    .analysis-card:hover,
    .team-member:hover,
    .value-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .floating-element {
        animation: none;
    }

    .hero::before,
    .about-hero::before,
    .predictions-hero::before {
        display: none;
    }
}

@supports (padding: max(0px)) {
    .header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .container {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }

    .about-hero,
    .predictions-hero {
        padding: 2rem 0;
    }

    .section {
        padding: 2rem 0;
    }

    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media print {
    @page {
        margin: 1cm;
    }

    .header,
    .footer,
    .news-sidebar,
    .news-toggle,
    .hamburger,
    .cta-button,
    .submit-btn,
    .premium-btn,
    .tool-btn {
        display: none !important;
    }

    .main-content {
        margin-top: 0;
    }

    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }

    .card,
    .prediction-card,
    .analysis-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        break-after: avoid;
        color: black !important;
    }

    .hero,
    .about-hero,
    .predictions-hero {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc;
    }
}

@media (max-width: 574px) {

    .container {
        padding: 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
    }

    .nav-menu {
        top: 60px;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .hamburger {
        width: 20px;
    }

    .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .hero h1,
    .about-hero h1,
    .predictions-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero p,
    .about-hero p,
    .predictions-hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-item .stat-number {
        font-size: 1.5rem;
    }

    .stat-item .stat-label {
        font-size: 0.8rem;
    }

    .about-hero-content {
        padding: 0 10px;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .floating-elements {
        width: 150px;
        height: 150px;
    }

    .floating-element {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .card-icon {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .analysis-card,
    .featured-article {
        margin-bottom: 1.5rem;
    }

    .analysis-image,
    .article-image {
        height: 150px;
        font-size: 2rem;
    }

    .analysis-content,
    .article-content {
        padding: 1rem;
    }

    .analysis-card h3,
    .article-content h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .analysis-meta,
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .analysis-category,
    .category {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .prediction-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .confidence-badge {
        top: -8px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .teams {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .team-name {
        font-size: 0.9rem;
    }

    .vs-section {
        margin: 0;
        order: 2;
    }

    .match-time,
    .match-date {
        font-size: 0.75rem;
    }

    .vs {
        font-size: 0.9rem;
    }

    .team-form {
        justify-content: center;
        gap: 0.2rem;
    }

    .form-indicator {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .league-info {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        font-size: 0.8rem;
    }

    .prediction-details {
        margin-bottom: 1rem;
    }

    .main-prediction h4 {
        font-size: 0.9rem;
    }

    .prediction-option {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .prediction-row {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .prediction-reasoning {
        margin-top: 0.75rem;
    }

    .prediction-reasoning h5 {
        font-size: 0.8rem;
    }

    .prediction-reasoning ul {
        font-size: 0.75rem;
    }

    .prediction-reasoning li {
        padding-left: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .stats-dashboard {
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .insight-card {
        padding: 1.25rem;
        flex-direction: column;
    }

    .expert-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .expert-name {
        font-size: 0.9rem;
    }

    .expert-title {
        font-size: 0.8rem;
    }

    .insight-text {
        font-size: 0.85rem;
        padding-left: 0.75rem;
    }

    .insight-text::before {
        font-size: 1.5rem;
        top: -5px;
    }

    .newsletter {
        padding: 2rem 0;
    }

    .newsletter h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .newsletter p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .newsletter-form {
        max-width: 280px;
        gap: 0.75rem;
    }

    .newsletter-form input {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .news-sidebar {
        width: 100%;
        top: 60px;
    }

    .news-toggle {
        right: 10px;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .news-header {
        padding: 1rem;
    }

    .news-header h3 {
        font-size: 1.1rem;
    }

    .news-content {
        padding: 0.75rem;
    }

    .news-item {
        padding: 0.75rem;
    }

    .news-title {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .news-description {
        font-size: 0.75rem;
    }

    .news-meta {
        font-size: 0.65rem;
    }

    .news-link {
        font-size: 0.75rem;
    }

    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .card-header .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .mission-points li,
    .vision-points li {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-left: 4px solid #667eea;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-year {
        position: static;
        color: #667eea;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .timeline-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .achievement-card {
        padding: 1rem;
    }

    .achievement-card i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .achievement-card h4 {
        font-size: 0.9rem;
    }

    .achievement-card p {
        font-size: 0.8rem;
    }

    .team-member {
        padding: 1.25rem;
    }

    .member-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .member-info h4 {
        font-size: 1.1rem;
    }

    .member-role {
        font-size: 0.9rem;
    }

    .member-bio {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .expertise-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .value-content h4 {
        font-size: 1.1rem;
    }

    .value-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .value-stats {
        padding: 0.6rem 0.8rem;
    }

    .value-stats span {
        font-size: 0.8rem;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-form-container {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .checkmark {
        width: 16px;
        height: 16px;
    }

    .error-message {
        font-size: 0.75rem;
    }

    .info-header h2 {
        font-size: 1.6rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .info-content h4 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .info-content small {
        font-size: 0.75rem;
    }

    .social-contact {
        padding: 1.25rem;
    }

    .social-contact h4 {
        font-size: 1.1rem;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .social-link i {
        font-size: 0.9rem;
    }

    .analysis-hero {
        padding: 2rem 0;
    }

    .analysis-filters {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .league-tabs {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .league-panel {
        padding: 1.25rem;
    }

    .league-stats {
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card h4 {
        font-size: 0.9rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    .stat-card span {
        font-size: 1.1rem;
    }

    .league-analysis-text h3 {
        font-size: 1.2rem;
    }

    .league-analysis-text p {
        font-size: 0.85rem;
    }

    .player-card {
        padding: 1rem;
    }

    .player-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .player-info h4 {
        font-size: 1rem;
    }

    .player-info p {
        font-size: 0.8rem;
    }

    .player-stats {
        font-size: 0.8rem;
        gap: 0.75rem;
    }

    .performance-indicator {
        gap: 0.75rem;
    }

    .performance-bar {
        height: 6px;
    }

    .performance-indicator span {
        font-size: 0.8rem;
    }

    .match-item {
        padding: 1rem;
    }

    .match-teams {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .team {
        justify-content: center;
        gap: 0.75rem;
    }

    .team-name {
        font-size: 0.9rem;
    }

    .team-score {
        font-size: 1.2rem;
    }

    .match-details {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .stat {
        gap: 0.75rem;
    }

    .stat-label {
        min-width: 80px;
        font-size: 0.8rem;
    }

    .stat-bar {
        height: 16px;
    }

    .stat-values {
        min-width: 60px;
        font-size: 0.75rem;
    }

    .tool-card {
        padding: 1.25rem;
    }

    .tool-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .tool-card h4 {
        font-size: 1rem;
    }

    .tool-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .tool-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .success-rate {
        margin-top: 1.5rem;
    }

    .rate-circle {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .rate-number {
        font-size: 1.2rem;
    }

    .rate-label {
        font-size: 0.7rem;
    }

    .date-selector {
        gap: 0.4rem;
    }

    .date-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .weekly-card {
        padding: 1.25rem;
    }

    .weekly-card.premium::before {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
        top: -8px;
        right: 15px;
    }

    .weekly-header h3 {
        font-size: 1.1rem;
    }

    .package-price {
        font-size: 1rem;
    }

    .package-features li {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .weekly-stats .stat-number {
        font-size: 1.2rem;
    }

    .weekly-stats .stat-label {
        font-size: 0.75rem;
    }

    .premium-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .history-filters {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .history-filter {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .history-stat {
        padding: 1rem;
    }

    .history-stat .stat-number {
        font-size: 1.5rem;
    }

    .history-stat .stat-label {
        font-size: 0.8rem;
    }

    .history-item {
        padding: 1rem;
    }

    .match-result {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .match-result .teams {
        font-size: 0.9rem;
    }

    .result-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .prediction-made {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        font-size: 0.8rem;
    }

    .match-date {
        font-size: 0.75rem;
        text-align: center;
    }

    .algorithm-explanation {
        padding: 1.5rem;
    }

    .algorithm-steps {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto;
    }

    .step-content h4 {
        font-size: 0.9rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .algorithm-factors h3 {
        font-size: 1.2rem;
    }

    .factor {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .factor i {
        font-size: 0.9rem;
    }

    .factor span {
        font-size: 0.8rem;
    }

    .tip-card {
        padding: 1.25rem;
    }

    .tip-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .tip-card h4 {
        font-size: 1rem;
    }

    .tip-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .premium-modal,
    .tool-modal {
        padding: 1rem;
    }

    .modal-content {
        margin: 0;
        border-radius: 15px;
    }

    .modal-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .premium-features h4 {
        font-size: 1rem;
    }

    .premium-features li {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .pricing {
        gap: 0.75rem;
    }

    .price-option {
        padding: 1rem;
    }

    .price-option h4 {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .discount {
        font-size: 0.75rem;
    }

    .modal-footer {
        padding: 0.75rem 1.25rem 1.25rem;
        gap: 0.75rem;
    }

    .btn-secondary,
    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .coming-soon {
        padding: 1.25rem;
    }

    .coming-soon i {
        font-size: 2rem;
    }

    .coming-soon h4 {
        font-size: 1rem;
    }

    .coming-soon p {
        font-size: 0.85rem;
    }

    .notification,
    .success-notification,
    .info-notification {
        right: 10px;
        top: 70px;
        max-width: 280px;
        border-radius: 8px;
    }

    .notification-content {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .notification-content i {
        font-size: 1rem;
    }

    .notification-text h4 {
        font-size: 0.85rem;
    }

    .notification-text p {
        font-size: 0.8rem;
    }

    .close-notification {
        font-size: 0.85rem;
        padding: 0.2rem;
    }

    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }

    .footer-container {
        padding: 0 10px;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.75rem;
        justify-content: center;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.8rem;
    }

    .mb-1 {
        margin-bottom: 0.2rem;
    }

    .mb-2 {
        margin-bottom: 0.4rem;
    }

    .mb-3 {
        margin-bottom: 0.75rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mt-1 {
        margin-top: 0.2rem;
    }

    .mt-2 {
        margin-top: 0.4rem;
    }

    .mt-3 {
        margin-top: 0.75rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    .p-1 {
        padding: 0.2rem;
    }

    .p-2 {
        padding: 0.4rem;
    }

    .p-3 {
        padding: 0.75rem;
    }

    .p-4 {
        padding: 1.5rem;
    }

    .loading-spinner {
        padding: 1.5rem;
    }

    .loading-spinner i {
        font-size: 1.5rem;
    }

    .chart-container {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    #performanceChart {
        height: 250px;
        width: 100%;
    }

    .main-content {
        margin-top: 60px;
    }

    .header {
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .cta-button,
    .submit-btn,
    .premium-btn,
    .tool-btn,
    .filter-btn,
    .tab-btn,
    .date-btn,
    .history-filter {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-links a,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    body {
        font-size: 14px;
        line-height: 1.5;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    p {
        word-wrap: break-word;
        hyphens: auto;
    }

    .news-sidebar,
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }

    .card:hover,
    .prediction-card:hover,
    .analysis-card:hover,
    .team-member:hover,
    .value-card:hover {
        transform: none;
    }

    .floating-element {
        animation: none;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    button:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }
}