:root {
    --primary: #6a3de8;
    --primary-light: #7e56ea;
    --primary-dark: #5a30c8;
    --secondary: #ff9934;
    --secondary-light: #ffae5a;
    --secondary-dark: #e58020;
    --text: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f7f5ff;
    --border: #e0e0e0;
    --success: #4caf50;
    --error: #f44336;
}

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

body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Hero */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9Im5vbmUiIC8+CjxwYXRoIGQ9Ik0wIDEwIEwxMDAgOTAgTTEwMCAxMCBMMCAzNSBNMTAwIDQwIEwwIDY1IE0xMDAgNzAgTDAgODAiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2Utb3BhY2l0eT0iMC4xIi8+Cjwvc3ZnPg==');
    opacity: 0.15;
    z-index: 0;
}

.hero {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-icon {
    font-size: 3rem;
    margin-right: 1rem;
    color: var(--secondary);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.banner-image {
    margin: 1.5rem auto;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-large {
    font-size: 1.4rem;
    padding: 16px 36px;
    letter-spacing: 0.5px;
}

.btn-small {
    font-size: 0.95rem;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
    margin-top: 0.5rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 52, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 153, 52, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--background-alt);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    background: var(--secondary);
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.treasure-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.category {
    background-color: white;
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.category span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Giveaway Section */
.giveaway-content {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.current-giveaway {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px dashed var(--border);
}

.current-giveaway img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.giveaway-item {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem !important;
}

.giveaway-date {
    font-size: 1rem !important;
    font-weight: 500;
    color: var(--secondary-dark);
    margin-bottom: 1rem !important;
}

.guild-heading {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.giveaway-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.giveaway-content p:last-of-type {
    margin-bottom: 2rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Social Section */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-card.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-card.ebay {
    background: linear-gradient(135deg, #86b817, #5d8310);
}

.social-card.whatnot {
    background: linear-gradient(135deg, #0076ff, #0058bd);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-card p {
    opacity: 0.9;
    font-size: 1rem;
}

/* Form Section */
.form-container {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#email-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

input, textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(106, 61, 232, 0.1);
}

.form-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(106, 61, 232, 0.3);
}

/* Affiliate Section */
.affiliate-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.affiliate-info {
    text-align: center;
}

.affiliate-info i.fab {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.affiliate-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.affiliate-info > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.affiliate-link-container {
    margin: 2rem 0;
}

.affiliate-links-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.affiliate-btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
    min-width: auto;
}

.amazon-btn {
    background-color: #232f3e;
    border: 2px solid #232f3e;
    box-shadow: 0 4px 12px rgba(35, 47, 62, 0.3);
}

.amazon-btn:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(35, 47, 62, 0.4);
}

.ebay-btn {
    background-color: #4a90e2;
    border: 2px solid #4a90e2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.ebay-btn:hover {
    background-color: #357abd;
    border-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
}

.affiliate-btn i {
    font-size: 1.8rem;
}

.affiliate-explanation {
    text-align: left;
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.affiliate-explanation h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.affiliate-explanation ul {
    list-style: none;
    padding: 0;
}

.affiliate-explanation li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.affiliate-explanation li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.affiliate-explanation strong {
    color: var(--primary);
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: var(--secondary);
}

footer a:hover {
    color: var(--secondary-light);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .main-tagline {
        font-size: 1.6rem;
    }
    
    .banner-image {
        margin: 1rem auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    #email-form {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .giveaway-content, .form-container, .contact-content {
        padding: 2rem;
    }
    
    .affiliate-content {
        padding: 2rem;
    }
    
    .affiliate-info i.fab {
        font-size: 3rem;
    }
    
    .affiliate-info h3 {
        font-size: 1.6rem;
    }
    
    .affiliate-btn {
        font-size: 1.1rem;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    .affiliate-links-container {
        gap: 0.8rem;
    }
    
    .affiliate-explanation {
        padding: 1.5rem;
    }
    
    .affiliate-explanation h4 {
        font-size: 1.2rem;
    }
    
    .affiliate-explanation li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .logo {
        flex-direction: column;
    }
    
    .logo-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .highlight-text {
        font-size: 1.3rem !important;
    }
    
    .contact-email {
        font-size: 1.1rem;
    }
    
    .btn-large {
        font-size: 1.2rem;
        padding: 14px 28px;
    }
    
    .btn-small {
        font-size: 0.9rem;
        padding: 8px 16px;
        margin-top: 0.5rem;
    }
    
    .current-giveaway img {
        max-height: 250px;
    }
    
    .guild-heading {
        font-size: 1.6rem;
    }
}

/* Mobile Conversion Optimization */
.urgency-banner {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
}

.urgency-text {
    font-size: 1rem;
}

.social-proof {
    padding: 1rem;
    margin: 1.5rem 0;
}

.member-count, .past-winners {
    font-size: 1rem;
}

.form-header {
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.form-urgency {
    font-size: 1.1rem;
}

.form-benefit {
    font-size: 1rem;
}

.benefit-item {
    padding: 0.8rem;
    gap: 0.8rem;
}

.benefit-item i {
    font-size: 1.3rem;
}

.recent-winners {
    padding: 1.5rem;
    margin-top: 2rem;
}

.recent-winners h4 {
    font-size: 1.1rem;
}

.winner {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
}

.affiliate-intro {
    font-size: 1.1rem !important;
    padding: 1rem;
}

.affiliate-guarantee {
    padding: 1rem;
}

.affiliate-guarantee p {
    font-size: 1rem;
}

.logo {
    flex-direction: column;
}

.logo-icon {
    margin-right: 0;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

@keyframes pulse-button {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

/* Conversion Optimization Styles */

/* Urgency and Scarcity Elements */
.urgency-banner {
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    animation: pulse-glow 2s infinite;
}

.urgency-text {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.urgency-small {
    color: #ff4757;
    font-weight: 600;
    margin-top: 0.5rem;
    animation: blink 2s infinite;
}

/* Social Proof Elements */
.social-proof {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.member-count, .past-winners {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.member-count strong, .past-winners strong {
    color: var(--primary);
}

/* Enhanced Giveaway Value */
.giveaway-value {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #27ae60 !important;
    margin: 0.5rem 0 !important;
}

.giveaway-scroll-btn {
    margin: 1rem 0;
    font-size: 1.1rem;
    padding: 12px 24px;
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
}

.giveaway-scroll-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 61, 232, 0.3);
}

/* Pulsing Button Animation */
.btn-pulse {
    animation: pulse-button 2s infinite;
    position: relative;
    overflow: hidden;
}

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

.btn-pulse:hover::before {
    left: 100%;
}

/* Enhanced Form Styling */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 10px;
}

.form-urgency {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.form-benefit {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    min-width: 30px;
}

.benefit-item span {
    font-weight: 600;
    color: var(--text);
}

/* Enhanced Form Elements */
.form-group input, .form-group textarea {
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 153, 52, 0.1);
    transform: translateY(-2px);
}

.form-guarantee {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 4px solid #27ae60;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 1rem;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* Recent Winners Section */
.recent-winners {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    border-radius: 10px;
    border: 2px solid var(--secondary);
}

.recent-winners h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.winner-list {
    display: grid;
    gap: 0.8rem;
}

.winner {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
}

/* Enhanced Affiliate Section */
.affiliate-intro {
    font-size: 1.3rem !important;
    color: var(--text) !important;
    margin-bottom: 2.5rem !important;
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.affiliate-guarantee {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #27ae60;
    text-align: center;
}

.affiliate-guarantee p {
    margin: 0;
    color: #155724;
    font-size: 1.1rem;
}
