/* Plus777 Login - Universal CSS Styles */
/* Mobile-first responsive design with casino theme */

/* Root font size for rem calculations */
html {
    font-size: 62.5%; /* 1rem = 10px */
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: #FFC0CB;
    font-size: 1.4rem;
    min-height: 100vh;
    padding-bottom: 8rem; /* Space for fixed bottom nav */
}

/* Container */
.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B0000 0%, #2C2C2C 100%);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 750px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFBF00;
}

.logo-section img {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.8rem;
}

.site-name {
    font-size: 1.6rem;
    font-weight: bold;
}

.header-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-register, .btn-login {
    background: linear-gradient(45deg, #FF9800, #FFBF00);
    color: #2C2C2C;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
}

.btn-register:hover, .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

/* Navigation toggle */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.hamburger span {
    width: 100%;
    height: 0.3rem;
    background: #FFBF00;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.7rem, -0.6rem);
}

/* Mobile navigation */
.mobile-nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #8B0000 0%, #2C2C2C 100%);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 192, 203, 0.1);
}

.mobile-nav a {
    display: block;
    padding: 1.2rem 2rem;
    color: #FFC0CB;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 152, 0, 0.1);
    color: #FFBF00;
}

.hidden {
    display: none !important;
}

/* Main content */
.main-content {
    margin-top: 7rem;
    padding: 2rem 0;
}

/* Carousel styles */
.carousel-container {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.carousel-slide {
    display: none;
    position: relative;
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.carousel-slide.active {
    display: block;
}

/* Game sections */
.game-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #FFBF00;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-item {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 0.8rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-item:hover {
    transform: translateY(-3px);
    border-color: #FF9800;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.game-item img {
    width: 100%;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.8rem;
}

.game-name {
    font-size: 1.1rem;
    color: #FFC0CB;
    font-weight: 500;
    line-height: 1.3;
}

/* Content modules */
.content-module {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.module-title {
    font-size: 2rem;
    color: #FFBF00;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.module-content {
    color: #FFC0CB;
    line-height: 1.6;
}

.module-content p {
    margin-bottom: 1.5rem;
}

/* Promotional links and buttons */
.promo-link {
    color: #FF9800;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.promo-link:hover {
    color: #FFBF00;
}

.promo-btn {
    background: linear-gradient(45deg, #FF9800, #FFBF00);
    color: #2C2C2C;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0.5rem;
    transition: all 0.3s ease;
    min-height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Footer styles */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem 0 10rem;
    margin-top: 5rem;
    border-top: 2px solid #8B0000;
}

.footer-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: #FFC0CB;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.footer-links a:hover {
    background: rgba(255, 152, 0, 0.1);
    color: #FFBF00;
}

.partners-section {
    margin-bottom: 3rem;
}

.partners-title {
    font-size: 1.6rem;
    color: #FFBF00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.partner-logo {
    width: 100%;
    height: 4rem;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.copyright {
    text-align: center;
    color: #808080;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Bottom navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #8B0000 0%, #2C2C2C 100%);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0;
    max-width: 750px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFC0CB;
    transition: all 0.3s ease;
    min-height: 4.4rem;
    justify-content: center;
    padding: 0.5rem;
}

.nav-item:hover {
    color: #FFBF00;
    transform: translateY(-2px);
}

.nav-item i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.nav-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive design for larger screens */
@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(10, 1fr);
    }
    
    .carousel-slide img {
        height: 25rem;
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(10, 1fr);
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.font-bold {
    font-weight: bold;
}

.text-gold {
    color: #FFBF00;
}

.text-orange {
    color: #FF9800;
}

.bg-gradient {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
} 