.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #910eca;
    background: rgba(145, 14, 202, 0.1);
    color:white!important;
    box-shadow: 0 0 20px rgba(145, 14, 202, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(145, 14, 202, 0.1), rgba(0, 0, 0, 0.9));
    border-bottom: 1px solid rgba(145, 14, 202, 0.2);
    margin-top: 80px;
    position: relative;
}

.page-hero-content {
    text-align: center;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, #910eca, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.shop-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.shop-card.featured {
    border-color: rgba(145, 14, 202, 0.5);
    transform: scale(1.05);
}

.shop-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(145, 14, 202, 0.6);
    box-shadow: 0 15px 50px rgba(145, 14, 202, 0.3);
}

.shop-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.shop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #910eca;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.shop-badge.best {
    background: linear-gradient(135deg, #910eca, #6B0A9A);
    animation: pulse 2s ease-in-out infinite;
}

.shop-badge.premium {
    background: linear-gradient(135deg, #6B0A9A, #4A0768);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.shop-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.shop-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #910eca;
    margin-bottom: 20px;
}

.shop-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #910eca;
    margin-bottom: 30px;
}

.shop-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.shop-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    border-bottom: 1px solid rgba(145, 14, 202, 0.1);
}

.vote-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vote-info-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.vote-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(145, 14, 202, 0.5);
    box-shadow: 0 10px 40px rgba(145, 14, 202, 0.2);
}

.vote-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.vote-info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #910eca;
    margin-bottom: 15px;
}

.vote-info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.vote-buttons {
    text-align: center;
    margin: 40px 0;
}

.leaderboard {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px;
}

.leaderboard table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard thead {
    background: linear-gradient(90deg, rgba(145, 14, 202, 0.2), rgba(145, 14, 202, 0.05));
}

.leaderboard th {
    padding: 20px;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    color: #910eca;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.leaderboard td {
    padding: 20px;
    border-bottom: 1px solid rgba(145, 14, 202, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.leaderboard tbody tr {
    transition: all 0.3s ease;
}

.leaderboard tbody tr:hover {
    background: rgba(145, 14, 202, 0.05);
}

.leaderboard .top-1 {
    background: linear-gradient(90deg, rgba(145, 14, 202, 0.1), transparent);
}

.leaderboard .top-2 {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), transparent);
}

.leaderboard .top-3 {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), transparent);
}

.rank-badge {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-align: center;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #910eca, #6B0A9A);
    color: #fff;
    box-shadow: 0 0 20px rgba(145, 14, 202, 0.5);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #000;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #E9B872);
    color: #000;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.online-dot,
.offline-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.online-dot {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
    animation: blink 2s ease-in-out infinite;
}

.offline-dot {
    background: #ff4444;
    box-shadow: 0 0 10px #ff4444;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.status-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 14, 202, 0.5);
    box-shadow: 0 10px 30px rgba(145, 14, 202, 0.2);
}

.status-card.online {
    border-color: #00ff88;
}

.status-indicator {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.status-icon {
    font-size: 40px;
    min-width: 40px;
}

.status-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #910eca;
    margin-bottom: 5px;
}

.status-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.server-info-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.server-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 14, 202, 0.5);
    box-shadow: 0 10px 30px rgba(145, 14, 202, 0.2);
}

.server-info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #910eca;
    margin-bottom: 25px;
    text-align: center;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(145, 14, 202, 0.1);
}

.info-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.info-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.info-box {
    background: linear-gradient(135deg, rgba(145, 14, 202, 0.05), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(145, 14, 202, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
}

.info-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #910eca;
    text-align: center;
    margin-bottom: 25px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 14, 202, 0.5);
    box-shadow: 0 10px 30px rgba(145, 14, 202, 0.2);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.contact-info-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #910eca;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #910eca;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.contact-form-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    background: linear-gradient(135deg, #910eca, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    color: #910eca;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(145, 14, 202, 0.05);
    border: 1px solid rgba(145, 14, 202, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: #fff!important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select {
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(0, 0, 0, 0.9) !important;
    color: #fff !important;
    padding-right: 40px;
}

.custom-select option {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 12px !important;
}

.custom-select option[value=""] {
    color: rgba(255, 255, 255, 0.5) !important;
}

.custom-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #910eca;
    pointer-events: none;
    font-size: 12px;
}

.form-group select option {
    background-color: #0a0a0a !important;
    background: #0a0a0a !important;
    color: #ffffff !important;
    padding: 15px !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

.form-group select option:first-child {
    color: rgba(255, 255, 255, 0.4) !important;
    font-style: italic !important;
}

.form-group select option:checked {
    background: rgba(145, 14, 202, 0.2) !important;
    color: #910eca !important;
    font-weight: 700 !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.message {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.message-icon {
    font-size: 30px;
}

.message p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 40px;
    }
    
    .shop-grid,
    .vote-info,
    .status-grid,
    .server-info-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-card.featured {
        transform: scale(1);
    }
    
    .leaderboard {
        overflow-x: auto;
    }
    
    .leaderboard table {
        min-width: 600px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .recruitment-positions {
        grid-template-columns: 1fr;
    }
}

.recruitment-info {
    margin-bottom: 60px;
    text-align: center;
}

.recruitment-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    background: linear-gradient(135deg, #910eca, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.recruitment-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.position-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 14, 202, 0.5);
    box-shadow: 0 10px 30px rgba(145, 14, 202, 0.2);
}

.position-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.position-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #910eca;
    margin-bottom: 10px;
}

.position-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.recruitment-form-container {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(145, 14, 202, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.recruitment-form-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    background: linear-gradient(135deg, #910eca, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
}

.recruitment-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: rgba(145, 14, 202, 0.03);
    border: 1px solid rgba(145, 14, 202, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.form-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #910eca;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(145, 14, 202, 0.2);
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.radio-label:hover {
    color: #910eca;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #910eca;
}

.char-counter {
    display: block;
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.form-actions {
    text-align: center;
    padding-top: 20px;
}

.candidature-link-box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(145, 14, 202, 0.3);
    border-radius: 8px;
}

.candidature-link-box input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(145, 14, 202, 0.05);
    border: 1px solid rgba(145, 14, 202, 0.3);
    border-radius: 5px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
}

.btn-copy {
    padding: 12px 25px;
    background: linear-gradient(135deg, #910eca, #FFFFFF);
    color: #000;
    border: none;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(145, 14, 202, 0.4);
}

.link-instructions {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 10px;
}

.message div {
    flex: 1;
}