/* Common styles for Poker Flopy */

/* Base styles */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../images/background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    overflow-y: auto;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(112.08% 70.27% at 51.18% 52.15%, rgba(0, 0, 0, 0.90) 0%, rgba(61, 10, 10, 0.99) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
}

nav a i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    transition: background-color 0.3s;
}

.language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-toggle i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.language-text {
    font-size: 14px;
}

/* Main content styles */
.main-content {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 60px auto 0;
    padding: 15px;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 30px;
}

/* Button styles */
.btn {
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #303030;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #004D40;
    color: white;
    margin-top: 12px;
}

.btn:hover {
    background: #00352C;
}

.btn-primary {
    background: #004D40;
    color: white;
}

.btn-secondary {
    background: #E7E7E7;
    color: black;
}

/* Responsive styles */
@media (min-width: 768px) {
    header {
        padding-left: 156px;
        padding-right: 156px;
    }
    .logo {
        height: 50px;
    }
    nav a {
        font-size: 16px;
        padding: 8px 12px;
    }
    .main-content {
        margin-top: 80px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(0, 0, 0, 0.95);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    nav a {
        display: flex;
        padding: 12px;
        font-size: 16px;
        text-align: left;
        justify-content: flex-start;
        height: auto;
    }
    header {
        padding: 10px 20px;
    }
} 