        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #0d6efd;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0a58ca;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1d2b3a 0%, #0f172a 100%);
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #4dc247;
        }
        .logo-text {
            background: linear-gradient(90deg, #4dc247, #2a8aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #4dc247;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #4dc247;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1d2b3a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e2e8f0;
            padding: 0.8rem 0;
            border-bottom: 1px solid #2d3748;
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: #4dc247;
            padding-left: 10px;
            transition: all 0.3s ease;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #0d6efd;
        }
        .breadcrumb span {
            color: #495057;
            margin: 0 5px;
        }
        .search-section {
            background-color: #fff;
            padding: 2rem 0;
            text-align: center;
            border-bottom: 1px solid #dee2e6;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(90deg, #2a8aee, #4dc247);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #1a7ad9, #3db83a);
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        article {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        h1 {
            color: #1d2b3a;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            margin-bottom: 2rem;
            font-style: italic;
            border-left: 4px solid #4dc247;
            padding-left: 1rem;
        }
        h2 {
            color: #2d3748;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            color: #4a5568;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #2d3748;
            background-color: #f1f8ff;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 5px solid #2a8aee;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffc107;
            margin: 1.5rem 0;
        }
        .img-container {
            margin: 2rem auto;
            text-align: center;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #6c757d;
            font-size: 0.9rem;
        }
        .link-list {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
        }
        @media (max-width: 600px) {
            .link-list ul {
                columns: 1;
            }
        }
        .link-list li {
            margin-bottom: 0.7rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li::before {
            content: '🏈';
            position: absolute;
            left: 0;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background-color: #fff;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .interactive-section h3 {
            margin-top: 0;
            color: #1d2b3a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interactive-section h3 i {
            color: #4dc247;
        }
        textarea, select, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        textarea:focus, select:focus, input:focus {
            border-color: #2a8aee;
            outline: none;
        }
        .star-rating {
            direction: rtl;
            text-align: center;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            font-size: 2rem;
            padding: 0 5px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .submit-btn {
            background: linear-gradient(90deg, #2a8aee, #4dc247);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #1a7ad9, #3db83a);
            box-shadow: 0 5px 15px rgba(42, 138, 238, 0.3);
        }
        footer {
            background-color: #1d2b3a;
            color: #e2e8f0;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #4dc247, #2a8aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-about p {
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        friend-link ul {
            list-style: none;
        }
        friend-link li {
            margin-bottom: 0.7rem;
        }
        friend-link a {
            color: #a0aec0;
            transition: color 0.3s ease;
        }
        friend-link a:hover {
            color: #4dc247;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
