/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInOut {
    0% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.7; transform: scale(0.98); }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('ff2.jpg') center top/cover no-repeat fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #222;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header Styles */
header {
    position: relative;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px;
}

/* Removed the header::before since we now have the overlay on the body */

header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header h1 {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: white;
}

header .subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    color: white;
}

.claim-btn {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.claim-btn:hover {
    background: linear-gradient(135deg, #dd2476, #ff512f);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(221, 36, 118, 0.5);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #ff512f, #dd2476, #ff512f);
    opacity: 0.7;
}

.benefits h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    background: linear-gradient(90deg, #ff512f, #dd2476, #ff512f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, #ff512f, #dd2476);
    background: linear-gradient(45deg, #ff512f, #dd2476);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #111;
    position: relative;
    display: inline-block;
}

.benefit-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Claim Section */
.claim-section {
    padding: 10px 0 30px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
}

.claim-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
    position: relative;
}

.claim-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    border-radius: 2px;
}

.claim-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.claim-form::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff512f, #dd2476, #ff512f);
    z-index: -1;
    border-radius: 18px;
    opacity: 0.5;
    filter: blur(8px);
}

.claim-form input, .claim-form select {
    width: 100%;
    padding: 18px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #333;
}

.claim-form input:focus, .claim-form select:focus {
    border-color: #dd2476;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(221, 36, 118, 0.2);
}

.claim-form input::placeholder, .claim-form select::placeholder {
    color: #aaa;
}

.diamond-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.claim-form button {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
    animation: fadeInOut 1.5s infinite ease-in-out;
}

.claim-form button:hover {
    background: linear-gradient(135deg, #00e676, #00c853);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 15px;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
    padding: 5px 0;
    display: inline-block;
}

/* Recent Rewards Section */
.recent-rewards {
    padding: 60px 0;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: white;
}

.recent-rewards-inline h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 5px;
    background-color: #333;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.recent-rewards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #222;
    position: relative;
}

.recent-rewards h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    border-radius: 2px;
}

.rewards-list {
    list-style: none;
    max-width: 600px;
    margin: 10px auto 0;
}

.rewards-list li {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rewards-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ff512f, #dd2476);
}

.rewards-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rewards-list .user {
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
}

.rewards-list .reward {
    color: #555;
    font-weight: 500;
    background-color: rgba(0, 200, 83, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background-color: #f8f9fa;
    position: relative;
}

.faq h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #222;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    border-radius: 2px;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #ff512f, #dd2476);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-item .question {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    font-size: 1.15rem;
    position: relative;
    padding-right: 30px;
}

.faq-item .question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #dd2476;
    font-weight: 400;
    transition: all 0.3s ease;
}

.faq-item.active .question::after {
transform: rotate(45deg);
}

.faq-item .answer {
color: #555;
line-height: 1.7;
font-size: 1.05rem;
padding-top: 5px;
}

/* Header */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('background.jpg');
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 150px 0;
position: relative;
min-height: 500px;
}

.mobile-logo {
    display: none;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100;
}

.mobile-logo img {
    max-width: 200px;
    height: auto;
}

/* Footer */
footer {
background-color: #222;
color: white;
text-align: center;
padding: 25px 0;
font-size: 0.9rem;
position: relative;
}

footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #ff512f, #dd2476, #ff512f);
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff512f, #dd2476, #ff512f);
}

footer p {
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
/* Large devices (desktops) */
@media (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
    
    header h1 {
        font-size: 26px;
    }
    
    header .subtitle {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-gap: 20px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    header {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .claim-form {
        max-width: 90%;
    }
    
    .faq-item .question {
        font-size: 1.1rem;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }
    
    header .subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .claim-btn {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    .claim-form {
        max-width: 90%;
        padding: 25px 20px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .claim-form input, .claim-form button {
        padding: 15px;
        font-size: 1rem;
    }
    
    .rewards-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .rewards-list .reward {
        margin-top: 5px;
    }
    
    .faq-item {
        padding: 15px;
    }
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
    header {
        height: 100vh;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .claim-form {
        max-width: 95%;
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 28px;
    }
    
    header .subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .claim-btn {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .claim-form {
        padding: 20px 15px;
    }
    
    .claim-section h2, .benefits h2, .faq h2 {
        font-size: 1.5rem;
    }
    
    .faq-item .question {
        font-size: 1rem;
        padding-right: 20px;
    }
    
    .faq-item .answer {
        font-size: 0.95rem;
    }
}
