/* Sport Streaming Enhanced Styles */

/* Smooth animations */
* {
    transition: all 0.3s ease;
}

/* Container Layout Fix */
body {
    overflow-x: hidden;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Enhanced Navbar */
.navbar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand img {
    filter: drop-shadow(0 0 8px rgba(42, 159, 214, 0.6));
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Section */
h1 {
    background: linear-gradient(135deg, #2a9fd6 0%, #77b300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(42, 159, 214, 0.3);
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Stream Button */
.main-stream-button {
    background: linear-gradient(135deg, #12465E 0%, #2a9fd6 100%);
    border: none;
    padding: 14px 35px !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(42, 159, 214, 0.4);
    position: relative;
    overflow: hidden;
}

.main-stream-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.main-stream-button:hover::before {
    left: 100%;
}

.main-stream-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 159, 214, 0.6);
}

/* Sport Cards */
.live-sport .card {
    background: linear-gradient(145deg, #1a1a1a 0%, #282828 100%);
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.live-sport .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a9fd6, #77b300, #f80);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.live-sport .card:hover::before {
    transform: scaleX(1);
}

.live-sport .card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #2a9fd6;
    box-shadow: 0 12px 30px rgba(42, 159, 214, 0.4);
}

.card-header {
    background: linear-gradient(135deg, #12465E 0%, #1a5a75 100%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2a9fd6;
}

.card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: #1a1a1a;
}

.vipbox {
    filter: drop-shadow(0 0 10px rgba(42, 159, 214, 0.5));
    transition: all 0.3s ease;
}

.live-sport:hover .vipbox {
    filter: drop-shadow(0 0 20px rgba(42, 159, 214, 0.8));
    transform: scale(1.1);
}

/* Content Sections */
section {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    border-left: 4px solid #2a9fd6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

section h2 {
    color: #2a9fd6;
    border-bottom: 2px solid #2a9fd6;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

section h3 {
    color: #77b300;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Blockquote */
blockquote {
    background: linear-gradient(135deg, #12465E 0%, #1a1a1a 100%);
    border-left: 5px solid #77b300;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #adafae;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

blockquote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Lists */
ul, ol {
    padding-left: 2rem;
}

ul li, ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

ul li::before {
    content: '▶';
    color: #2a9fd6;
    font-size: 0.8rem;
    position: absolute;
    left: -1.5rem;
}

/* Table */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #333;
}

table tr:first-child td:first-child {
    background: linear-gradient(135deg, #12465E 0%, #1a5a75 100%);
    color: #fff;
    font-weight: 700;
    width: 30%;
}

table tr td:last-child {
    background: #1a1a1a;
}

table tr:hover td {
    background: #282828;
}

/* Banner Image */
img[src*="banner"] {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    margin: 2rem 0;
    border: 2px solid #333;
    display: block;
}

/* Footer */
.row:last-child {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #2a9fd6;
}

.row:last-child a {
    color: #2a9fd6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.row:last-child a:hover {
    color: #77b300;
    text-decoration: underline;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.card-body .vipbox {
    animation: pulse 2s ease-in-out infinite;
}

.live-sport:hover .card-body .vipbox {
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .main-stream-button {
        padding: 12px 25px !important;
        font-size: 1rem;
    }

    section {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    table {
        font-size: 0.9rem;
    }

    table td {
        padding: 0.75rem;
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.8s ease;
}

