/* 
  Berjaya Sama - Premium Online Casino Design System
  Colors:
  - Deep Slate Blue: #393C54
  - Sage Green: #97B077
  - Soft Ivory: #F8FAEC
*/

/* Fonts are loaded in HTML head */

:root {
    --primary: #393C54;
    --accent: #97B077;
    --bg-light: #F8FAEC;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #F8FAEC;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(57, 60, 84, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 10%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.mobile-only {
    display: none;
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* --- Buttons --- */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(151, 176, 119, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(151, 176, 119, 0.5);
    background: #a9c488;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

/* Adjust nav for winners bar removal */
nav {
    top: 0;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(57, 60, 84, 0.4), rgba(57, 60, 84, 0.8)), url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh; /* Taller fade for smoother transition */
    background: linear-gradient(to bottom, 
        rgba(57, 60, 84, 0) 0%,
        rgba(57, 60, 84, 0.2) 20%,
        rgba(57, 60, 84, 0.5) 50%,
        rgba(57, 60, 84, 0.8) 80%,
        var(--primary) 100%
    );
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    z-index: 10;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--bg-light);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* --- Section Styling --- */
section {
    padding: 8rem 10%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-top: 1rem;
    color: var(--white);
}

/* --- Game Categories --- */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(151, 176, 119, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card img {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.game-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.game-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* --- Promotions --- */
.promo-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.promo-section .section-header h2 {
    color: var(--text-dark);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.promo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    color: var(--text-light);
    position: relative;
}

.promo-card:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.promo-badge {
    background: var(--accent);
    color: var(--primary);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.promo-card > i {
    font-size: 2.5rem;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.promo-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.promo-card ul {
    margin: 0 0 1.5rem 1.2rem;
    opacity: 0.85;
    font-size: 0.9rem;
    color: var(--text-light);
}

.promo-card ul li {
    margin-bottom: 0.4rem;
}

.promo-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.promo-card .price span {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.6;
}

.promo-tag {
    background: var(--accent);
    color: var(--primary);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.promo-notice {
    margin-top: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.promo-notice i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.promo-notice a {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Trust & Payments --- */
.trust-section {
    text-align: center;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    opacity: 0.6;
}

.payment-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-item i {
    font-size: 2rem;
    color: var(--accent);
}

/* --- Testimonials --- */
.testimonials {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
}

/* --- Footer --- */
footer {
    padding: 6rem 10% 3rem;
    background-color: #2a2d3e;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about p {
    margin-top: 1.5rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 2rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--bg-light);
    opacity: 0.6;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.responsible-gaming {
    display: flex;
    gap: 2rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 1s ease forwards;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 5%; }
    
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(57, 60, 84, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: 0.5s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-only {
        display: block;
        width: 100%;
        padding: 0 10%;
    }

    .mobile-only .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-cta {
        display: none; /* Hide desktop buttons on mobile */
    }

    /* Add login/register inside mobile menu if needed, or keep it simple */

    section { padding: 5rem 5%; }
    
    .hero {
        padding: 0 5%;
    }

    .hero h1 { 
        font-size: 2.8rem; 
        margin-top: 2rem;
    }

    .hero-btns { 
        flex-direction: column; 
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid { 
        grid-template-columns: 1fr; 
    }

    .promo-card {
        padding: 2rem;
    }

    .promo-card .price {
        font-size: 2.8rem;
    }

    .payment-logos {
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo img {
        height: 55px;
    }
}

/* --- Content Section Enhancements --- */
.platform-image {
    margin-top: 3rem;
    text-align: center;
}

.platform-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* --- Content Sections --- */
.content-section {
    padding: 5rem 8%;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.content-section p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.content-section ul {
    margin: 0.8rem 0 1rem 1.2rem;
    opacity: 0.85;
}

.content-section ul li {
    margin-bottom: 0.4rem;
}

.content-section p a,
.content-section ul a {
    color: var(--accent);
    text-decoration: underline;
}

.alt-bg {
    background: rgba(255,255,255,0.03);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.2rem;
}

.feature-card > strong {
    font-size: 1.2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.8rem;
}

.feature-card ul {
    margin: 0.8rem 0 1.2rem 0;
    font-size: 0.9rem;
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--glass-border);
    line-height: 1.5;
}

.feature-card ul li:last-child {
    border-bottom: none;
}

.feature-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

.feature-card ul li strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.trust-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.trust-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.trust-card h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.faq-item a {
    color: var(--accent);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 1rem;
}

.cta-btns {
    margin: 2rem 0 1rem;
}

.cta-links {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cta-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 0.3rem;
}

.cta-links a:hover {
    text-decoration: underline;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.promo-info {
    padding: 1.25rem;
}

.promo-info h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--gold, #c9a84c);
}

.promo-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* Slot Games Grid */
.slot-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.slot-game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slot-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.slot-game-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.slot-game-info {
    padding: 1rem;
}

.slot-game-info h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: var(--gold, #c9a84c);
}

.slot-game-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .slot-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 4rem 5%;
    }

    .content-section h2 {
        font-size: 1.7rem;
    }

    .feature-grid,
    .steps-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .slot-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Provider Table — /partnership/ */
.provider-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.92rem;
}

.provider-table th {
    background: rgba(151, 176, 119, 0.15);
    color: var(--accent);
    text-align: left;
    padding: 0.9rem 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--glass-border);
}

.provider-table td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    opacity: 0.85;
    vertical-align: top;
}

.provider-table tr:last-child td {
    border-bottom: none;
}

.provider-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
    .provider-table thead { display: none; }
    .provider-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--glass-border);
        border-radius: 10px;
        padding: 0.5rem;
    }
    .provider-table td {
        display: block;
        border-bottom: none;
        padding: 0.4rem 0.8rem;
    }
    .provider-table td::before {
        content: attr(data-label) ": ";
        color: var(--accent);
        font-weight: 600;
        font-size: 0.8rem;
    }
}

/* Login Page — /login/ */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
}

.login-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 3.5rem;
    width: 100%;
    max-width: 560px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: #333333;
    text-align: center;
}

@media (max-width: 768px) {
    .login-box {
        padding: 2.5rem 1.8rem;
        max-width: 100%;
    }
}

.login-box h1 {
    font-size: 2rem;
    color: #111111;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.login-box > p {
    font-size: 0.95rem;
    color: #888888;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.4rem;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333333;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    border-color: #f1c40f;
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
}

.form-group input::placeholder {
    color: #aaaaaa;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555555;
    cursor: pointer;
}

.remember-me input {
    accent-color: #f1c40f;
    width: 14px;
    height: 14px;
    margin: 0;
    cursor: pointer;
}

.forgot-pass {
    color: #d4ac0d;
    text-decoration: none;
    font-weight: 700;
}

.forgot-pass:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    background: #f1c40f;
    color: #111111;
    font-weight: 800;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.btn-login:hover {
    background: #d4ac0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999999;
    font-size: 0.85rem;
    margin: 2rem 0 1.5rem;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider-text:not(:empty)::before {
    margin-right: .8em;
}

.divider-text:not(:empty)::after {
    margin-left: .8em;
}

.login-footer {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.login-footer a {
    color: #d4ac0d;
    text-decoration: none;
    font-weight: 700;
}

.login-footer a:hover {
    text-decoration: underline;
}

.secure-login {
    border-top: 1px solid #eeeeee;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.logo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

