* {
            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.7;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        header {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 12px 12px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffdd59;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            color: inherit;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .search-box {
            flex-grow: 1;
            max-width: 400px;
            margin: 15px 20px;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #ff9f1a;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #e67e22;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            margin-top: 1.5rem;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 10px;
        }
        .nav-links li {
            margin: 0 10px;
        }
        .nav-links a {
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            font-weight: 600;
            display: block;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px;
            background: #e3f2fd;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #1a73e8;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        h1 {
            color: #0c2461;
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            border-bottom: 3px solid #ff9f1a;
            padding-bottom: 10px;
        }
        h2 {
            color: #1e3799;
            font-size: 1.9rem;
            margin: 2rem 0 1rem;
            padding-top: 10px;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            color: #34495e;
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .last-updated {
            background: #ffeaa7;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 25px;
            font-style: italic;
            text-align: center;
            border-left: 5px solid #fdcb6e;
        }
        .highlight-box {
            background: #f1f8ff;
            border-left: 5px solid #1a73e8;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tipster-tips {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .tip-card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .tip-card h4 {
            color: #0c2461;
        }
        .player-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        .stat-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #0c2461;
        }
        .user-interaction {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #eee;
        }
        .rating-section, .comment-section {
            margin-bottom: 30px;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ff9f1a;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        form input, form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        form textarea {
            min-height: 120px;
            resize: vertical;
        }
        form button {
            background: #1e3799;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            align-self: flex-start;
            transition: background 0.3s;
        }
        form button:hover {
            background: #0c2461;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
            border-radius: 12px 12px 0 0;
            margin-top: 50px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: #ff9f1a;
        }
        friend-link {
            display: block;
            margin: 20px 0;
            padding: 15px;
            background: #34495e;
            border-radius: 8px;
        }
        friend-link a {
            color: #ff9f1a;
            font-weight: bold;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #4a6572;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box {
                max-width: 100%;
                margin: 15px 0;
                order: 3;
            }
            .hamburger {
                display: block;
                order: 2;
                align-self: flex-end;
                margin-top: -50px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 5px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            main {
                padding: 20px;
            }
            .tipster-tips {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
