* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f19;
    /* Radial gradient simulating the blue ambient background glow */
    background-image: radial-gradient(circle at 60% 50%, #0d233a 0%, #070a10 70%);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

/* Left Side Styling */
.hero-image-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    flex: 1;
}

.character-art {
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 153, 255, 0.2));
}

/* Right Side Styling */
.hero-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.brand-title h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 40px;
}

.brand-title h1 span {
    color: #0080ff;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    max-width: 450px;
}

/* Play Button Styling */
.play-btn {
    display: inline-block;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(90deg, #0066ff 0%, #0044cc 100%);
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.play-btn:hover {
    background: linear-gradient(90deg, #0077ff 0%, #0055ff 100%);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.7);
    transform: translateY(-2px);
}