.thanksgiving-contest-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #2c1810 100%);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(210, 105, 30, 0.3), 0 0 100px rgba(205, 133, 63, 0.2);
    border: 2px solid #d2691e;
    position: relative;
    overflow: hidden;
}

.thanksgiving-contest-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.1) 0%, transparent 70%);
    animation: thanksgiving-pulse 4s ease-in-out infinite;
}

@keyframes thanksgiving-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.thanksgiving-contest-container * {
    position: relative;
    z-index: 1;
}

.thanksgiving-contest-title {
    text-align: center;
    color: #d2691e;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(210, 105, 30, 0.8), 0 0 40px rgba(205, 133, 63, 0.5);
    font-weight: 900;
    animation: thanksgiving-glow 2s ease-in-out infinite alternate;
}

@keyframes thanksgiving-glow {
    from { text-shadow: 0 0 20px rgba(210, 105, 30, 0.8), 0 0 40px rgba(205, 133, 63, 0.5); }
    to { text-shadow: 0 0 30px rgba(210, 105, 30, 1), 0 0 60px rgba(205, 133, 63, 0.8); }
}

.thanksgiving-contest-subtitle {
    text-align: center;
    color: #d4a574;
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.thanksgiving-contest-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1em;
}

.thanksgiving-prize-section {
    background: rgba(210, 105, 30, 0.1);
    border: 2px solid #d2691e;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(210, 105, 30, 0.2);
}

.thanksgiving-prize-title {
    color: #d2691e;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(210, 105, 30, 0.5);
}

.thanksgiving-prize-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thanksgiving-prize-list li {
    padding: 12px 20px;
    margin: 10px 0;
    background: rgba(205, 133, 63, 0.2);
    border-left: 4px solid #cd853f;
    border-radius: 8px;
    color: #fff;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

.thanksgiving-prize-list li:hover {
    background: rgba(205, 133, 63, 0.3);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(205, 133, 63, 0.4);
}

.thanksgiving-contest-form {
    margin-top: 30px;
}

.thanksgiving-form-group {
    margin-bottom: 25px;
}

.thanksgiving-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d4a574;
    font-weight: 600;
    font-size: 1.05em;
    text-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
}

.thanksgiving-form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #cd853f;
    border-radius: 10px;
    background: rgba(44, 24, 16, 0.8);
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.thanksgiving-form-group input:focus {
    outline: none;
    border-color: #d2691e;
    box-shadow: 0 0 20px rgba(210, 105, 30, 0.4), 0 0 40px rgba(205, 133, 63, 0.2);
    background: rgba(44, 24, 16, 0.9);
}

.thanksgiving-form-group input::placeholder {
    color: #cd853f;
}

.thanksgiving-form-group input.error {
    border-color: #f44336;
}

.thanksgiving-form-error {
    color: #f44336;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

.thanksgiving-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.thanksgiving-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #d2691e 0%, #cd853f 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(210, 105, 30, 0.4);
    position: relative;
    overflow: hidden;
}

.thanksgiving-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.thanksgiving-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.thanksgiving-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(210, 105, 30, 0.6);
    background: linear-gradient(135deg, #cd853f 0%, #d2691e 100%);
}

.thanksgiving-submit-btn:active {
    transform: translateY(0);
}

.thanksgiving-submit-btn:disabled {
    background: #4a4a4a;
    cursor: not-allowed;
    box-shadow: none;
}

.thanksgiving-message {
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    animation: thanksgiving-slideIn 0.3s ease;
}

@keyframes thanksgiving-slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thanksgiving-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.thanksgiving-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
}

.thanksgiving-rules {
    margin-top: 30px;
    padding: 25px;
    background: rgba(205, 133, 63, 0.1);
    border: 1px solid #cd853f;
    border-radius: 15px;
}

.thanksgiving-rules h3 {
    color: #d2691e;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(210, 105, 30, 0.5);
}

.thanksgiving-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thanksgiving-rules li {
    padding: 10px 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(205, 133, 63, 0.3);
    line-height: 1.6;
}

.thanksgiving-rules li:last-child {
    border-bottom: none;
}

.thanksgiving-rules li:before {
    content: '🦃';
    margin-right: 10px;
}

.thanksgiving-contest-closed {
    text-align: center;
    padding: 40px;
    color: #d2691e;
    font-size: 1.5em;
    text-shadow: 0 0 20px rgba(210, 105, 30, 0.5);
}

@media (max-width: 768px) {
    .thanksgiving-contest-container {
        padding: 25px;
        margin: 20px;
    }

    .thanksgiving-contest-title {
        font-size: 1.8em;
    }

    .thanksgiving-contest-subtitle {
        font-size: 1em;
    }
}
