* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f5f5f5;
            padding-bottom: 60px;
        }
        .container {
            width: 92%;
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #2c3e50);
            color: white;
            padding: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #ff9800;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ff9800;
            border-bottom: 2px solid #ff9800;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff9800;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('trishul-power-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 850px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(45deg, #ff5722, #ff9800);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 0 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #e64a19, #f57c00);
        }
        .content {
            background-color: white;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        h2 {
            color: #1a2a6c;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9800;
            font-size: 1.8rem;
        }
        h3 {
            color: #2c3e50;
            margin: 30px 0 20px;
            font-size: 1.4rem;
            position: relative;
            padding-left: 15px;
        }
        h3:before {
            content: "•";
            color: #ff5722;
            font-size: 1.8rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .section {
            margin-bottom: 50px;
        }
        .gameplay-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .feature-card {
            background: linear-gradient(180deg, #f9f9f9, #f0f0f0);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #ff5722;
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card h4 {
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        table th, table td {
            padding: 15px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }
        table th {
            background: linear-gradient(45deg, #2c3e50, #34495e);
            color: white;
            font-weight: bold;
        }
        table tr:nth-child(even) {
            background-color: #f8f8f8;
        }
        table tr:hover {
            background-color: #f0f5ff;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .gallery img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .gallery img:hover {
            transform: scale(1.03);
        }
        .blockquote {
            font-style: italic;
            border-left: 5px solid #ff9800;
            padding: 20px 25px;
            margin: 25px 0;
            color: #444;
            background-color: #f9f9f9;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #1a2a6c);
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
            border-radius: 20px 20px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ff9800;
            margin-bottom: 25px;
            font-size: 1.3rem;
            padding-left: 0;
        }
        .footer-section h3:before {
            content: "";
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ff9800;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: linear-gradient(45deg, #2980b9, #1f6391);
            transform: translateY(-2px);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            border-left: 4px solid #ff5722;
        }
        .highlight-box h4 {
            color: #e64a19;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 25px;
                background-color: rgba(26, 42, 108, 0.95);
                padding: 20px;
                border-radius: 8px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .content {
                padding: 25px;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 80%;
            }
        }
