/* Container styling */
.aditya-game-wrapper {
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937; /* Modern dark slate text */
}

/* Form Styles */
.aditya-form-group {
    margin-bottom: 20px;
}

.aditya-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Full Width Inputs */
.aditya-input {
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't break the 100% width */
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9fafb;
    transition: border-color 0.3s ease;
}

.aditya-input:focus {
    outline: none;
    border-color: #111827; /* Modern dark border on focus */
}

/* Modern Professional Button */
.aditya-btn {
    width: 100%;
    background-color: #111827; /* Deep professional charcoal/black */
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.aditya-btn:hover {
    background-color: #374151; /* Lighter charcoal on hover */
}

/* =========================================
   MOBILE HORIZONTAL NOTEBOOKS LAYOUT
   ========================================= */
/* =========================================
   UPGRADED MOBILE LAYOUT (NO SCROLLING)
   ========================================= */
.notebook-container {
    display: flex;
    justify-content: center; /* Centers them beautifully */
    gap: 10px; /* A smaller gap so they fit on mobile */
    flex-wrap: nowrap; /* Forces them to stay on exactly one horizontal line */
    width: 100%;
}

.notebook-item {
    flex: 1 1 30%; /* The magic trick: tells each notebook to take up roughly 33% of the space */
    max-width: 160px; /* Stops them from getting too massive on desktop screens */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notebook-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.notebook-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}