/**
 * Locker Start Page Styles
 */

/* Language Switcher */
.locker-language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    z-index: 100;
}

.locker-language-switcher .lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.locker-language-switcher .lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.locker-language-switcher .lang-code {
    font-size: 12px;
}

.locker-language-switcher .lang-option:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.locker-language-switcher .lang-option.active {
    color: #ffffff;
    background-color: #E31837;
}

.locker-start-wrapper {
    position: relative;
    min-height: 100vh;
    background-color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.locker-start-wrapper *,
.locker-start-wrapper *::before,
.locker-start-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.locker-start-container {
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.locker-start-logo {
    margin-bottom: 40px;
}

.locker-start-logo img {
    height: 64px;
    width: auto;
}

.locker-start-card {
    background-color: #252542;
    border-radius: 20px;
    padding: 40px 32px;
}

.locker-start-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.locker-start-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

.locker-start-subtitle strong {
    color: #E31837;
    font-weight: 600;
}

.locker-start-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.locker-start-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 20px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.locker-start-option:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.locker-start-option.option-primary {
    background-color: #E31837;
    color: #ffffff;
}

.locker-start-option.option-primary:hover {
    box-shadow: 0 8px 28px rgba(227, 24, 55, 0.35);
    color: #ffffff;
}

.locker-start-option.option-secondary {
    background-color: #1a1a2e;
    border: 2px solid #3a3a5c;
    color: #ffffff;
}

.locker-start-option.option-secondary:hover {
    border-color: #E31837;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.locker-start-option .option-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.locker-start-option.option-primary .option-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.locker-start-option.option-secondary .option-icon {
    background-color: #252542;
}

.locker-start-option .option-content {
    text-align: left;
    flex: 1;
}

.locker-start-option .option-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: inherit;
}

.locker-start-option .option-desc {
    font-size: 13px;
    opacity: 0.75;
    color: inherit;
}

.locker-start-option .option-arrow {
    font-size: 20px;
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.locker-start-option:hover .option-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Tip box */
.locker-start-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.locker-start-tip .tip-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.locker-start-tip .tip-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Help text */
.locker-start-help-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.5;
}

.locker-start-footer {
    margin-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 480px) {
    .locker-language-switcher {
        top: 12px;
        right: 12px;
        padding: 3px;
    }
    
    .locker-language-switcher .lang-option {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .locker-start-wrapper {
        padding: 16px;
        padding-top: 60px;
    }
    
    .locker-start-logo {
        margin-bottom: 32px;
    }
    
    .locker-start-logo img {
        height: 52px;
    }
    
    .locker-start-card {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .locker-start-title {
        font-size: 22px;
    }
    
    .locker-start-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .locker-start-option {
        padding: 18px 16px;
        gap: 14px;
    }
    
    .locker-start-option .option-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
    
    .locker-start-option .option-title {
        font-size: 15px;
    }
    
    .locker-start-option .option-desc {
        font-size: 12px;
    }
}
