* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes chrome-shine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

body {
    font-family: "Doto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "ROND" 0;
    background: linear-gradient(135deg, #2e1a0a 0%, #5c3d1f 20%, #d96704 40%, #ff8c42 60%, #2e1a0a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Floating blobs */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.affiliate-image {
    opacity: 90%;
    width: 50%;
    height: 50%;
    object-fit: cover;
    border: dotted 1px #ff8c42;
    margin-bottom: 10px;
}
.grid-background::before,
.grid-background::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite;
}

.grid-background::before {
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.grid-background::after {
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff 0%, #e0e0e0 20%, #ffffff 40%, #e0e0e0 60%, #ffffff 80%, #e0e0e0 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chrome-shine 3s linear infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3);
    letter-spacing: -2px;
    text-transform: lowercase;
}

.tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem auto;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ff88;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: blob-morph 8s ease-in-out infinite;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.card-content {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.features-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffff00;
    font-size: 1rem;
    filter: drop-shadow(0 0 8px #ffff00);
}

/* Affiliate Links Section */
.affiliate-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
    max-height: 600px; /* Adjust this value as needed */
    overflow-y: auto;
    overflow-x: hidden;
}

.affiliate-section::-webkit-scrollbar {
    width: 6px; /* Narrower scrollbar */
}

.affiliate-section::-webkit-scrollbar-track {
    background: transparent; /* Invisible track */
    margin: 15px 0; /* Adds gap at top/bottom for rounded corners */
}

.affiliate-section::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2); /* Semi-transparent */
    border-radius: 10px; /* Rounded scrollbar */
    transition: background 0.2s;
}

.affiliate-section::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4); /* Darker on hover */
}

.affiliate-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.affiliate-body {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.affiliate-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.affiliate-link:hover {
    transform: translateX(10px) scale(1.05);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.affiliate-icon {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.affiliate-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.affiliate-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Social Links */
.social-section {
    text-align: center;
    margin-top: 3rem;
}

.social-section h3 {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: scale(1.1) rotate(-2deg);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-size: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.newsletter-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.4);
}

.footer-buttons {
    color: #ffffff;
    text-decoration: none;
}
.footer-buttons:hover {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: underline;
}

.profile-pic-container {
    display: flex;
    justify-content: center;
}

.profile-pic {
    opacity: 76%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /* ... other styles ... */
    object-fit: cover;           /* Makes image crop to fit */
    object-position: center;     /* Centers the crop */
    display: block;              /* NEW - Removes inline spacing */
    min-width: 130px;           /* NEW - Enforces minimum */
    min-height: 130px;          /* NEW - Enforces minimum */
    max-width: 130px;           /* NEW - Enforces maximum */
    max-height: 130px;          /* NEW - Enforces maximum */
}

.profile-pic-placeholder {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.profile-pic-placeholder:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 255, 255, 0.3);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    main {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}