.offers-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    min-height: calc(100vh - 200px);
}

.offers-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1200px;
}

.offers-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    animation: fadeInScale 1s ease-out forwards;
}

.offers-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offers-container {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.offer-card {
    width: 330px;
    height: 316px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }

.offer-card::before {
    display: none;
}

.offer-card:hover::before {
    display: none;
}

.offer-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
}

.offer-logo-container {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.offer-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.offer-card:hover .offer-logo {
    transform: scale(1.1);
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-align: center;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-rewards {
    margin-bottom: 15px;
}

.rewards-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0 0 10px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rewards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.reward-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.reward-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.offer-code-section {
    margin-bottom: 15px;
}

.code-display {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.code-display:hover {
    border-color: #ffd700;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

.code-display.copied {
    border-color: #4CAF50;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.3);
}

.code-text {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.95rem;
    color: #ffd700;
    letter-spacing: 1px;
}

.copy-icon {
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.code-display:hover .copy-icon {
    opacity: 1;
    color: #ffd700;
    transform: scale(1.1);
}

.copy-icon.copied {
    color: #4CAF50;
}

.offer-actions {
    text-align: center;
}

.claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.claim-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.3);
}

.offers-info {
    width: 100%;
    max-width: 500px;
    margin-top: 15px;
}

.info-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.info-card i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.info-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.info-card p {
    color: #ccc;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .offers-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .offers-title {
        font-size: 2.5rem;
    }
    
    .offer-card {
        padding: 20px;
    }
    
    .rewards-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .offers-content {
        padding: 20px 10px;
    }
    
    .offers-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .offers-subtitle {
        font-size: 1rem;
    }
    
    .offer-card {
        padding: 15px;
    }
    
    .offer-logo {
        width: 60px;
        height: 60px;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
    
    .code-display {
        padding: 12px 15px;
    }
    
    .code-text {
        font-size: 1rem;
    }
}