﻿.gaming-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 10px;
}

.gc-box {
    width: 100%;
    max-width: 420px;
    background: #050505;
    border: 1px solid #ffd700;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.gc-title {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
}

.gc-input,
.gc-textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    background: #000;
    border: 1px solid #ffd700;
    color: #ffd700;
    border-radius: 8px;
}

.gc-textarea {
    height: 110px;
    resize: none;
}

.gc-captcha {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.gc-captcha-code {
    padding: 10px 14px;
    background: #111;
    border: 1px dashed #ffd700;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 4px;
    user-select: none;
}

.gc-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.gc-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.gc-send {
    background: #ffd700;
    color: #000;
}

.gc-reset {
    background: #222;
    color: #ffd700;
    border: 1px solid #ffd700;
}

.gc-cancel {
    background: #8b0000;
    color: #fff;
}

.gc-success {
    color: #00ff99;
    margin-bottom: 10px;
    text-align: center;
}
