* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('assets/background.png') center/cover fixed;
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.banner-item .icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.banner-item .pulse {
    animation: pulse 2s infinite;
}

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

/* Main Container */
.container {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 40px 20px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-wrapper {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.6);
    border: 5px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.8);
}

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.main-title {
    font-family: 'Burbank Big Condensed', sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8));
    }
}

.verified-badge {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(29, 161, 242, 0.8));
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Divider */
.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    margin: 40px 0;
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Buttons Section */
.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.claim-button {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.claim-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.claim-button:hover::before {
    left: 100%;
}

.claim-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.claim-button:active {
    transform: translateY(-2px) scale(0.98);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.button-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.button-text {
    flex: 1;
    font-family: 'Burbank Big Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
}

.status-indicator {
    width: 16px;
    height: 16px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Reviews Section */
.reviews-section {
    margin-top: 60px;
}

.reviews-title {
    font-family: 'Burbank Big Condensed', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.review-info {
    flex: 1;
}

.reviewer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .banner-item {
        font-size: 12px;
    }

    .container {
        margin-top: 180px;
        padding: 20px 15px;
    }

    .logo-image {
        width: 140px;
        height: 140px;
    }

    .main-title {
        font-size: 48px;
    }

    .verified-badge {
        width: 35px;
        height: 35px;
    }

    .subtitle {
        font-size: 16px;
    }

    .button-text {
        font-size: 28px;
    }

    .button-icon {
        width: 50px;
        height: 50px;
    }

    .reviews-title {
        font-size: 36px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 36px;
    }

    .verified-badge {
        width: 28px;
        height: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .button-text {
        font-size: 24px;
    }
}

