        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2a5db0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f8c400;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a237e 0%, #283593 50%, #1a237e 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #f8c400, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-color: #f8c400;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a237e;
            padding: 20px;
            border-top: 1px solid #3949ab;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid #3949ab;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #e8eaf6;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb a:hover {
            color: #1a237e;
        }
        .breadcrumb span {
            color: #777;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://via.placeholder.com/1200x600/2a5db0/ffffff?text=Clash+Royale+Sound+Buttons+Hero+Image') center/cover no-repeat;
            color: white;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .search-bar {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(42, 93, 176, 0.2);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(90deg, #f8c400, #ff9800);
            color: white;
            border: none;
            padding: 0 35px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 60px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .article-content h2 {
            color: #1a237e;
            border-left: 6px solid #f8c400;
            padding-left: 15px;
            margin: 40px 0 20px;
            font-size: 2rem;
        }
        .article-content h3 {
            color: #283593;
            margin: 30px 0 15px;
            font-size: 1.6rem;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content b {
            color: #1a237e;
        }
        .article-content emoji {
            font-size: 1.3em;
            margin: 0 5px;
        }
        .image-block {
            margin: 35px 0;
            text-align: center;
        }
        .image-block img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid #f8c400;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-left: 5px solid #9c27b0;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .sidebar-widget h3 {
            color: #1a237e;
            border-bottom: 2px solid #f8c400;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .soundboard {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .sound-btn {
            background: linear-gradient(145deg, #5c6bc0, #3949ab);
            color: white;
            border: none;
            padding: 20px 10px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 10px rgba(57, 73, 171, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .sound-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 18px rgba(57, 73, 171, 0.4);
            background: linear-gradient(145deg, #f8c400, #ff9800);
        }
        .sound-btn i {
            font-size: 1.8rem;
        }
        .user-interaction {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px dashed #ddd;
        }
        .rating-form, .comment-form {
            background: #f9f9ff;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0 25px;
        }
        .star {
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #5c6bc0;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(90deg, #1a237e, #3949ab);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            background: linear-gradient(90deg, #f8c400, #ff9800);
        }
        .footer-links {
            background: #1a237e;
            padding: 50px 0 30px;
            color: white;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.08);
            padding: 18px;
            border-radius: 10px;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(248, 196, 0, 0.2);
            transform: translateX(10px);
        }
        .web-link a {
            color: #ffeb3b;
            font-weight: 600;
        }
        .footer-bottom {
            background: #0d153a;
            color: #aaa;
            text-align: center;
            padding: 25px;
            font-size: 0.95rem;
        }
        .footer-bottom a {
            color: #f8c400;
        }
