.premium-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin: 40px 0;
}

.input-status {
    margin-top: 5px;
    line-height: 1.4;
}

.input-status.success div {
    color: #ff7800;
}

.input-status.error {
    color: #f44336;
}

.input-status div:first-child {
    font-weight: bold;
}

.redemption-container {
    margin-top: 80px;
    padding: 50px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 2rem auto;
}

.redemption-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 120, 0, 0.1), rgba(41, 40, 40, 0.1));
    transform: skewY(-5deg);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.redemption-container h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--glow-color);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 120, 0, 0.1);
    border: 1px solid rgba(255, 120, 0, 0.2);
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.help-text {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
}

.input-status {
    margin-top: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    min-height: 20px;
}

.input-status.error {
    color: #ff4444;
}

.input-status.success {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--glow-color);
}

.redeem-button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    opacity: 0.5;
}

.redeem-button:not(:disabled) {
    opacity: 1;
    background: var(--primary-color);
}

.redeem-button:not(:disabled):hover {
    background-color: #ff9900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--glow-color);
}

.redeem-button:not(:disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--glow-color);
}

.premium-logo {
    margin: -120px auto 40px;
    position: relative;
    z-index: 1;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem;
    text-align: center;
    max-width: 250px;
    color: rgba(255, 255, 255, 0.6);
}

.server-item-premium {
    flex: 1 1 300px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-item-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 120, 0, 0.11), rgba(41, 40, 40, 0.2));
    z-index: -1;
    transition: all 0.3s ease;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.premium-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(332deg, #ff780029 0%, #ff45003b 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 1px solid rgba(255, 120, 0, 0.3);
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.premium-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 120, 0, 0.3);
}

.premium-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.premium-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff7800;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
}

.premium-button:hover::after {
    transform: scaleX(1);
}

.server-info {
    flex-grow: 1;
}