* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.hub-mode {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: block;
    padding: 0;
    min-height: auto;
    animation: none;
}

.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 20px 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .navbar {
        padding: 15px 15px;
    }
    .nav-links {
        gap: 10px;
    }
    .nav-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    .logo {
        font-size: 22px;
    }
}

.subscribe-btn {
    background-color: #e74c3c;
    color: white;
}

.subscribe-btn:hover {
    background-color: #c0392b;
}

.faq-btn {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.faq-btn:hover {
    background-color: #bdc3c7;
}

.profile-container {
    position: relative;
    cursor: pointer;
}

.profile-icon {
    font-size: 20px;
    background: #ecf0f1;
    color: #2c3e50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.profile-icon:hover {
    background: #bdc3c7;
}

.profile-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 15px;
    min-width: 200px;
    z-index: 100;
}

.profile-phone {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.unsubscribe-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.unsubscribe-btn:hover {
    background: #c0392b;
}

/* Custom Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(3px);
}

.custom-modal {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: tipIn 0.3s ease-out;
}

.custom-modal h3 {
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 20px;
}

.custom-modal p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.custom-modal-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.custom-modal-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    transition: 0.2s;
}

.btn-cancel {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-cancel:hover {
    background: #bdc3c7;
}

.btn-confirm {
    background: #e74c3c;
    color: white;
}

.btn-confirm:hover {
    background: #c0392b;
}

/* FAQ Modal Custom Styles */
.faq-modal {
    max-width: 500px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
}

.faq-modal h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.faq-section {
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-section h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 17px;
}

.faq-section p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.faq-section .charge-info {
    color: #e74c3c;
    font-weight: bold;
    margin-top: 10px;
}

.mt-2 { margin-top: 15px; }
.mt-3 { margin-top: 25px; }

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: white;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    opacity: 0.9;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.game-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder {
    font-size: 20px;
    color: #888;
    font-weight: 600;
}

.game-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.game-info h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.game-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding-left: 5px; /* visually center the play triangle */
}

.game-card:hover .play-overlay {
    opacity: 1;
}

/* Cat Animation */
.cat-icon {
    font-size: 80px;
    animation: catRun 0.8s infinite alternate ease-in-out;
}

@keyframes catRun {
    0% { transform: translateY(0) translateX(-5px) rotate(-5deg); filter: drop-shadow(0 10px 5px rgba(0,0,0,0.3)); }
    100% { transform: translateY(-15px) translateX(5px) rotate(5deg); filter: drop-shadow(0 20px 10px rgba(0,0,0,0.15)); }
}

/* Dice Animation */
.dice-icon {
    font-size: 80px;
    animation: diceAnimate 1.5s infinite alternate ease-in-out;
}

@keyframes diceAnimate {
    0% { transform: translateY(0) rotate(-10deg); filter: drop-shadow(0 10px 5px rgba(0,0,0,0.3)); }
    100% { transform: translateY(-15px) rotate(15deg); filter: drop-shadow(0 20px 15px rgba(0,0,0,0.15)); }
}

/* Rocket Animation */
.rocket-icon {
    font-size: 80px;
    animation: rocketShake 1.5s infinite alternate ease-in-out;
    transform-origin: bottom center;
}

@keyframes rocketShake {
    0% { transform: translateY(0) translateX(-2px) rotate(-1deg); filter: drop-shadow(-2px 10px 15px rgba(255, 69, 0, 0.8)); }
    100% { transform: translateY(-4px) translateX(2px) rotate(1deg); filter: drop-shadow(2px 20px 25px rgba(255, 140, 0, 1)); }
}

.play-icon {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

.play-icon svg {
    margin-left: 5px;
}

.game-card:hover .play-icon {
    background: #4caf50;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.coming-soon {
    opacity: 0.7;
    pointer-events: none;
}

/* Feature Chips */
@keyframes tipIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

.feat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0 auto 30px;
    max-width: 1200px;
    padding: 0 40px;
}
@media(max-width: 768px) { 
    .feat-row { grid-template-columns: repeat(2, 1fr); } 
}
.feat {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    padding: 12px;
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.feat:hover {
    border-color: rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.feat-ico {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

/* Rotating Tips */
.tip-bar {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 147, 176, 0.1));
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 55px;
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.tip-ico {
    font-size: 24px;
    flex-shrink: 0;
}
.tip-text {
    font-size: 16px;
    color: #34495e;
    line-height: 1.5;
    animation: tipIn 0.5s ease;
}
.tip-text strong {
    color: #e74c3c;
    font-weight: 700;
}
