/* Giveaway Banner Section */
.giveaway-banner-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.95) 0%, 
        rgba(15, 23, 42, 0.95) 50%,
        rgba(30, 41, 59, 0.95) 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEO Hidden Text */
.seo-text-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.seo-text-hidden h2 {
    font-size: 1rem;
    color: #1e293b;
}

.seo-text-hidden p {
    font-size: 0.875rem;
    color: #1e293b;
}

/* Animated Background Orbs */
.giveaway-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.giveaway-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent);
    filter: blur(40px);
    animation: orbFloat 8s ease-in-out infinite;
}

.giveaway-orb.orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.giveaway-orb.orb-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: 15%;
    animation-delay: 2s;
}

.giveaway-orb.orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.giveaway-orb.orb-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.6;
    }
}

/* Scrolling Text Banner */
.giveaway-scroll-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, 
        rgba(251, 191, 36, 0.2) 0%, 
        rgba(245, 158, 11, 0.3) 50%,
        rgba(251, 191, 36, 0.2) 100%);
    border-bottom: 2px solid rgba(251, 191, 36, 0.4);
    padding: 0.75rem 0;
    overflow: hidden;
    z-index: 2;
}

.scroll-text-content {
    display: flex;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
}

.scroll-text-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.scroll-text-item i {
    font-size: 1rem;
    color: #f59e0b;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
}

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

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Main Container */
.giveaway-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .giveaway-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .giveaway-container {
        padding: 0 0.75rem;
    }
}

@media (max-width: 360px) {
    .giveaway-container {
        padding: 0 0.5rem;
    }
}

/* Grid Layout */
.giveaway-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%, 
        rgba(15, 23, 42, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(251, 191, 36, 0.2);
}

@media (min-width: 768px) {
    .giveaway-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .giveaway-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        padding: 5rem 4rem;
    }
}

/* Grid Items */
.giveaway-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giveaway-item.giveaway-icon-section {
    grid-column: 1 / -1;
    text-align: center;
}

.giveaway-item.giveaway-content-section {
    grid-column: 1 / -1;
}

.giveaway-item.giveaway-features-section {
    grid-column: 1 / -1;
}

.giveaway-item.giveaway-cta-section {
    grid-column: 1 / -1;
    text-align: center;
}

@media (min-width: 768px) {
    .giveaway-item.giveaway-icon-section {
        grid-column: 1 / -1;
    }
    
    .giveaway-item.giveaway-content-section {
        grid-column: 1 / 2;
    }
    
    .giveaway-item.giveaway-features-section {
        grid-column: 2 / -1;
    }
}

@media (min-width: 1024px) {
    .giveaway-item.giveaway-icon-section {
        grid-column: 1 / -1;
    }
    
    .giveaway-item.giveaway-content-section {
        grid-column: 1 / 2;
    }
    
    .giveaway-item.giveaway-features-section {
        grid-column: 2 / 3;
    }
    
    .giveaway-item.giveaway-cta-section {
        grid-column: 3 / -1;
    }
}

/* Icon Section */
.giveaway-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.giveaway-icon-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4), transparent);
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
}

.giveaway-icon {
    position: relative;
    font-size: 3rem;
    color: #1a1a2e;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    z-index: 2;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

/* Title */
.giveaway-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .giveaway-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .giveaway-title {
        font-size: 3rem;
    }
}

.giveaway-title .typing-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.giveaway-title .typing-text::after {
    content: '|';
    animation: typingCursor 1s infinite;
    color: #fbbf24;
    margin-left: 2px;
}

@keyframes typingCursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Description */
.giveaway-description {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .giveaway-description {
        font-size: 1.125rem;
        text-align: left;
    }
}

.highlight-text {
    color: #fbbf24;
    font-weight: 700;
}

.highlight-orange {
    color: #f59e0b;
    font-style: italic;
}

/* Pricing */
.giveaway-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.2) 0%, 
        rgba(249, 115, 22, 0.2) 100%);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 16px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .giveaway-pricing {
        justify-content: flex-start;
    }
}

.pricing-old {
    display: flex;
    align-items: center;
}

.price-strikethrough {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.pricing-arrow {
    color: #fbbf24;
    font-size: 1.5rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.pricing-new {
    display: flex;
    align-items: center;
}

.price-free {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: priceGlow 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .price-free {
        font-size: 2.5rem;
    }
}

@keyframes priceGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8));
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.2);
}

.feature-icon {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .feature-text {
        font-size: 1rem;
    }
}

/* CTA Button */
.giveaway-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 200%;
    color: #1a1a2e;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    animation: gradientShift 3s ease infinite;
}

.giveaway-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.giveaway-cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s;
}

.giveaway-cta-button:hover .cta-shine {
    left: 100%;
}

.cta-icon-left,
.cta-icon-right {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.giveaway-cta-button:hover .cta-icon-right {
    transform: translateX(5px);
}

.cta-text {
    position: relative;
    z-index: 1;
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .giveaway-banner-section {
        padding: 3.5rem 0;
        min-height: 550px;
    }
    
    .giveaway-container {
        padding: 0 1.5rem;
    }
    
    .giveaway-grid {
        padding: 3rem 2.5rem;
        gap: 2rem;
    }
    
    .giveaway-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .giveaway-icon-glow {
        width: 110px;
        height: 110px;
    }
    
    .giveaway-title {
        font-size: 2.25rem;
    }
    
    .giveaway-description {
        font-size: 1.0625rem;
    }
    
    .giveaway-pricing {
        gap: 1.25rem;
        padding: 1.25rem;
    }
    
    .price-strikethrough {
        font-size: 1.125rem;
    }
    
    .price-free {
        font-size: 2.25rem;
    }
    
    .feature-card {
        padding: 0.875rem;
    }
    
    .feature-text {
        font-size: 0.9375rem;
    }
    
    .giveaway-cta-button {
        padding: 1.125rem 2.25rem;
        font-size: 1.0625rem;
    }
    
    /* Reduce orbs on tablet */
    .giveaway-orb.orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .giveaway-orb.orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .giveaway-orb.orb-3 {
        width: 150px;
        height: 150px;
    }
    
    .giveaway-orb.orb-4 {
        width: 150px;
        height: 150px;
    }
}

/* Mobile Styles (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .giveaway-banner-section {
        padding: 3rem 0;
        min-height: 500px;
    }
    
    .giveaway-container {
        padding: 0 1rem;
    }
    
    .giveaway-grid {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-radius: 20px;
    }
    
    .giveaway-icon-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .giveaway-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .giveaway-icon-glow {
        width: 90px;
        height: 90px;
    }
    
    .giveaway-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .giveaway-description {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .giveaway-pricing {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 14px;
    }
    
    .pricing-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
    }
    
    .price-strikethrough {
        font-size: 1rem;
    }
    
    .price-free {
        font-size: 1.875rem;
    }
    
    .features-grid {
        gap: 0.875rem;
    }
    
    .feature-card {
        padding: 0.875rem;
        border-radius: 10px;
    }
    
    .feature-icon {
        font-size: 1.125rem;
    }
    
    .feature-text {
        font-size: 0.8125rem;
    }
    
    .giveaway-cta-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-icon-left,
    .cta-icon-right {
        font-size: 1.125rem;
    }
    
    .scroll-text-item {
        font-size: 0.75rem;
        padding: 0 2rem;
        gap: 0.5rem;
    }
    
    .scroll-text-item i {
        font-size: 0.875rem;
    }
    
    /* Reduce orbs on mobile */
    .giveaway-orb.orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .giveaway-orb.orb-2 {
        width: 150px;
        height: 150px;
    }
    
    .giveaway-orb.orb-3 {
        width: 120px;
        height: 120px;
    }
    
    .giveaway-orb.orb-4 {
        width: 100px;
        height: 100px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .giveaway-banner-section {
        padding: 2.5rem 0;
        min-height: auto;
    }
    
    .giveaway-container {
        padding: 0 0.75rem;
    }
    
    .giveaway-grid {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
        border-radius: 16px;
    }
    
    .giveaway-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .giveaway-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .giveaway-icon-glow {
        width: 75px;
        height: 75px;
    }
    
    .giveaway-title {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    .giveaway-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .giveaway-pricing {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 12px;
    }
    
    .pricing-arrow {
        transform: rotate(90deg);
        font-size: 1.125rem;
    }
    
    .price-strikethrough {
        font-size: 0.9375rem;
    }
    
    .price-free {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-card {
        padding: 0.75rem;
        border-radius: 10px;
        justify-content: flex-start;
    }
    
    .feature-icon {
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .giveaway-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        gap: 0.625rem;
        width: 100%;
        max-width: 100%;
        letter-spacing: 1px;
    }
    
    .cta-icon-left,
    .cta-icon-right {
        font-size: 1rem;
    }
    
    .scroll-text-item {
        font-size: 0.6875rem;
        padding: 0 1.5rem;
        gap: 0.5rem;
        letter-spacing: 1px;
    }
    
    .scroll-text-item i {
        font-size: 0.75rem;
    }
    
    /* Hide some orbs on small mobile */
    .giveaway-orb.orb-3,
    .giveaway-orb.orb-4 {
        display: none;
    }
    
    .giveaway-orb.orb-1 {
        width: 150px;
        height: 150px;
    }
    
    .giveaway-orb.orb-2 {
        width: 120px;
        height: 120px;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .giveaway-banner-section {
        padding: 2rem 0;
    }
    
    .giveaway-container {
        padding: 0 0.5rem;
    }
    
    .giveaway-grid {
        padding: 1.25rem 0.875rem;
        gap: 1rem;
    }
    
    .giveaway-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .giveaway-icon-glow {
        width: 65px;
        height: 65px;
    }
    
    .giveaway-title {
        font-size: 1.25rem;
    }
    
    .giveaway-description {
        font-size: 0.8125rem;
    }
    
    .giveaway-pricing {
        padding: 0.875rem;
    }
    
    .price-free {
        font-size: 1.375rem;
    }
    
    .giveaway-cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .scroll-text-item {
        font-size: 0.625rem;
        padding: 0 1.25rem;
    }
}

