/* Hero Section */
.hero {
    padding-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 50%, #ffa07a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" opacity="0.1"/></svg>');
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-60px, -60px); }
}

.hero-content {
    max-width: 1400px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f7 100%);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(252, 20, 54, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(252, 20, 54, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Platforms Section */
.platforms {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    color: white;
}

.platforms-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.platform-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.platform-card p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.platform-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.platform-link:hover {
    gap: 1rem;
}

/* Content Showcase */
.content-showcase {
    padding: 6rem 2rem;
    background: white;
}

.showcase-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.showcase-item {
    background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.showcase-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.showcase-item p {
    color: #666;
    line-height: 1.6;
}

/* Live Content Styles */
.content-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.product-image {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #fc1436;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.story-header {
    margin-bottom: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 700;
    color: #333;
}

.story-meta {
    font-size: 0.85rem;
    color: #999;
}

.story-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.story-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #999;
}

/* Football Grid */
.football-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.football-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.football-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.football-card.featured {
    grid-column: span 2;
}

.football-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    color: #fc1436;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.football-content {
    padding: 1.5rem;
}

.football-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.football-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.football-card p {
    color: #666;
    margin-bottom: 1rem;
}

.football-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #999;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.news-card.major {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #fc1436;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.news-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #999;
    align-items: center;
}

.news-author {
    font-weight: 600;
    color: #fc1436;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
}

.board-grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(252, 20, 54, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(252, 20, 54, 0.2);
}

.team-card.ceo {
    grid-column: span 1;
    border: 2px solid #fc1436;
}

.team-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fc1436;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-role {
    color: #fc1436;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fc1436 0%, #ff6b6b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(252, 20, 54, 0.3);
}




@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .football-card.featured,
    .news-card.major {
        grid-column: span 1;
    }

    .category-title {
        font-size: 1.5rem;
    }
}