* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #ffffff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border-radius: var(--radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        .btn-secondary {
            background: var(--secondary);
        }
        .btn-secondary:hover {
            background: var(--primary);
        }
        .site-header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .fa-futbol {
            color: var(--accent);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent);
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            left: 0;
            bottom: -5px;
            transition: var(--transition);
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            padding: 10px 15px;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            width: 220px;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 18px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
        }
        .search-box button:hover {
            background: var(--secondary);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: var(--light);
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0 4rem;
        }
        article {
            grid-column: 1;
        }
        aside {
            grid-column: 2;
        }
        article section {
            margin-bottom: 3.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed #cbd5e1;
        }
        article h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        article h3 {
            color: var(--secondary);
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        article em {
            color: var(--secondary);
            font-style: italic;
        }
        article ul, article ol {
            margin: 1.5rem 0 1.5rem 1.5rem;
        }
        article li {
            margin-bottom: 0.8rem;
        }
        .featured-img {
            margin: 2.5rem auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .featured-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background: var(--light);
            color: var(--gray);
            font-size: 0.95rem;
        }
        .callout {
            background: #eff6ff;
            border-left: 5px solid var(--primary);
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .callout h4 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }
        .simulator-widget {
            background: var(--light);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            margin: 3rem 0;
        }
        .simulator-widget h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .draw-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .draw-group {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .draw-group h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .draw-group ul li {
            padding: 0.5rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .simulator-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        aside section {
            background: var(--light);
            padding: 1.8rem;
            border-radius: var(--radius);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        aside h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-links li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #cbd5e1;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .rating-widget .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 1rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget select, .rating-widget textarea {
            padding: 0.8rem;
            border: 1px solid #94a3b8;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .rating-widget button {
            align-self: flex-start;
        }
        .comments-section {
            margin-top: 4rem;
        }
        .comment-form, .score-form {
            background: var(--light);
            padding: 2rem;
            border-radius: var(--radius);
            margin-bottom: 3rem;
        }
        .comment-form h3, .score-form h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #94a3b8;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .comment {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-col h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        .footer-col a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                order: -1;
            }
            .draw-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: var(--dark);
                padding: 2rem;
                transition: var(--transition);
                z-index: 999;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .search-box input {
                width: 180px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .draw-container {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 2.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero-btns, .simulator-controls {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
            .search-box {
                display: none;
            }
        }
