/* Updated CSS for Rank Selection Page to match home.css style */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow-x: hidden;
}

.select-container {
    max-width: 600px;
    margin: 150px auto 0 auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.select-title {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.select-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.btn-select {
    padding: 14px 32px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    background: #00ffff;
    box-shadow: 0 0 15px #00ffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-select:hover {
    background: #00e6e6;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.25);
}

.btn-icon {
    font-size: 1.2rem;
}
