* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container and Layout */
.alf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alf-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alf-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.alf-section-alt {
    background-color: #ffffff;
}

/* Header Styles */
.alf-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(29, 155, 240, 0.1);
}

.alf-header.alf-scrolled {
    background: rgba(248, 249, 250, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.alf-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alf-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #1d9bf0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alf-logo:hover {
    transform: scale(1.05);
}

.alf-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: alf-logo-spin 3s ease-in-out infinite;
}

@keyframes alf-logo-spin {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.alf-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.alf-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.alf-nav-link {
    font-weight: 600;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alf-nav-link:hover::before {
    left: 100%;
}

.alf-nav-link:hover {
    color: #1d9bf0;
    background-color: rgba(29, 155, 240, 0.05);
    transform: translateY(-2px);
}

.alf-auth-buttons {
    display: flex;
    gap: 1rem;
}

.alf-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.alf-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.alf-btn:hover::before {
    width: 300px;
    height: 300px;
}

.alf-btn-primary {
    background: linear-gradient(135deg, #1d9bf0, #0ea5e9);
    color: white;
    box-shadow: 0 5px 15px rgba(29, 155, 240, 0.3);
}

.alf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 155, 240, 0.4);
}

.alf-btn-secondary {
    background: linear-gradient(135deg, #fb2424, #f59e0b);
    color: white;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.alf-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.alf-btn-outline {
    background: transparent;
    color: #1d9bf0;
    border: 2px solid #1d9bf0;
}

.alf-btn-outline:hover {
    background: #1d9bf0;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu */
.alf-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.alf-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.alf-mobile-toggle.alf-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.alf-mobile-toggle.alf-active span:nth-child(2) {
    opacity: 0;
}

.alf-mobile-toggle.alf-active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -2px);
}

.alf-mobile-menu {
    position: fixed;
    top: 100%;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 2rem;
}

.alf-mobile-menu.alf-active {
    right: 0;
}

.alf-mobile-nav {
    list-style: none;
    margin-bottom: 2rem;
}

.alf-mobile-nav li {
    margin-bottom: 1rem;
}

.alf-mobile-nav a {
    color: #374151;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid #e5e7eb;
}

.alf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alf-overlay.alf-active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.alf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
            135deg,
            rgb(240 29 29 / 70%),
            rgb(141 36 251 / 70%)
        ),
        url(../images/alf-hero.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.alf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(29, 155, 240, 0.1) 50%,
        transparent 70%
    );
    animation: alf-hero-shine 4s ease-in-out infinite;
}

@keyframes alf-hero-shine {
    0%,
    100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.alf-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: alf-fade-up 1s ease-out;
}

@keyframes alf-fade-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alf-hero h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: alf-title-glow 2s ease-in-out infinite alternate;
}

@keyframes alf-title-glow {
    from {
        filter: drop-shadow(0 0 5px rgba(29, 155, 240, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(29, 155, 240, 0.6));
    }
}

.alf-hero p {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    font-weight: 500;
}

.alf-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.alf-hero-buttons .alf-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    animation: alf-bounce 2s ease-in-out infinite;
}

@keyframes alf-bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* How It Works Section */
.alf-how-it-works {
    background: white;
    position: relative;
}

.alf-section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.alf-section-title h2 {
    position: relative;
    display: inline-block;
}

.alf-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1d9bf0, #fb2424);
    border-radius: 2px;
}

.alf-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.alf-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alf-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1d9bf0, #fb2424);
}

.alf-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.alf-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.alf-step-icon span {
    font-size: 2rem;
}

.alf-step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.alf-step:hover .alf-step-icon::before {
    transform: translateX(100%);
}

.alf-step h3 {
    color: #374151;
    margin-bottom: 1rem;
}

.alf-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Latest Draws Section */
.alf-latest-draws {
    background: #f8f9fa;
    position: relative;
}

.alf-draws-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.alf-table {
    width: 100%;
    border-collapse: collapse;
}

.alf-table th {
    background: linear-gradient(135deg, #1d9bf0, #0ea5e9);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.alf-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.alf-table tr:hover td {
    background: rgba(29, 155, 240, 0.05);
}

.alf-jackpot {
    font-weight: 700;
    color: #fb2424;
    font-size: 1.2rem;
}

.alf-result {
    display: flex;
    gap: 0.5rem;
}

.alf-ball {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.alf-view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Winners Section */
.alf-winners {
    background: white;
    position: relative;
}

.alf-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.alf-winner-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alf-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #fb2424, #f59e0b);
}

.alf-winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.alf-winner-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.alf-winner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.alf-winner-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.alf-winner-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fb2424;
    margin-bottom: 1rem;
}

.alf-winner-quote {
    font-style: italic;
    color: #6b7280;
    line-height: 1.6;
    position: relative;
}

.alf-winner-quote::before {
    content: '"';
    font-size: 3rem;
    color: #1d9bf0;
    position: absolute;
    top: -10px;
    left: -10px;
}

/* Team Section */
.alf-team {
    background: #f8f9fa;
    position: relative;
}

.alf-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.alf-team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alf-team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1d9bf0, #fb2424);
}

.alf-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.alf-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.alf-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.alf-member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.alf-member-role {
    color: #1d9bf0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Popup Styles */
.alf-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alf-popup.alf-active {
    opacity: 1;
    visibility: visible;
}

.alf-popup-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.alf-popup.alf-active .alf-popup-content {
    transform: scale(1);
}

.alf-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alf-popup-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.alf-popup h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #374151;
}

.alf-form-group {
    margin-bottom: 1.5rem;
}

.alf-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.alf-form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.alf-form-input:focus {
    outline: none;
    border-color: #1d9bf0;
    background: white;
    box-shadow: 0 0 0 3px rgba(29, 155, 240, 0.1);
}

.alf-form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.alf-footer {
    background: #374151;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.alf-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1d9bf0, #fb2424);
}

.alf-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.alf-footer-section h3 {
    color: #fb2424;
    margin-bottom: 1.5rem;
}

.alf-footer-links {
    list-style: none;
}

.alf-footer-links li {
    margin-bottom: 0.8rem;
}

.alf-footer-links a {
    color: #d1d5db;
    transition: all 0.3s ease;
}

.alf-footer-links a:hover {
    color: #1d9bf0;
    transform: translateX(5px);
}

.alf-disclaimer {
    background: #1f2937;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #fb2424;
}

.alf-disclaimer h4 {
    color: #fb2424;
    margin-bottom: 1rem;
}

.alf-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d1d5db;
}

.alf-age-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.alf-service-logos {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.alf-service-logo {
    width: 150px;
    height: 80px;
    background: #4b5563;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 5px;
}

.alf-service-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.alf-service-logo:hover {
    background: #6b7280;
    transform: scale(1.05);
}

.alf-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    color: #9ca3af;
}

/* Animations */
.alf-animate-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.alf-animate-fade.alf-visible {
    opacity: 1;
    transform: translateY(0);
}

.alf-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.alf-animate-scale.alf-visible {
    opacity: 1;
    transform: scale(1);
}

.alf-animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.alf-animate-slide-left.alf-visible {
    opacity: 1;
    transform: translateX(0);
}

.alf-animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.alf-animate-slide-right.alf-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1285px) {
    .alf-nav-links,
    .alf-auth-buttons {
        display: none;
    }

    .alf-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .alf-container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .alf-hero h1 {
        font-size: 3rem;
    }

    .alf-hero p {
        font-size: 1.2rem;
    }

    .alf-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .alf-steps {
        grid-template-columns: 1fr;
    }

    .alf-table {
        font-size: 0.9rem;
    }

    .alf-table th,
    .alf-table td {
        padding: 1rem 0.5rem;
    }

    .alf-winners-grid {
        grid-template-columns: 1fr;
    }

    .alf-team-grid {
        grid-template-columns: 1fr;
    }

    .alf-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .alf-service-logos {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .alf-section {
        padding: 60px 0;
    }

    .alf-popup-content {
        padding: 2rem;
        margin: 1rem;
    }

    .alf-hero h1 {
        font-size: 2.5rem;
    }

    .alf-hero p {
        font-size: 1rem;
    }

    .alf-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .alf-step {
        padding: 1.5rem;
    }

    .alf-step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .alf-winner-card,
    .alf-team-member {
        padding: 1.5rem;
    }

    .alf-winner-avatar,
    .alf-member-photo {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .alf-logo {
        font-size: 1.2rem;
    }

    .alf-service-logos {
        flex-direction: column;
    }
}

/* Utility Classes */
.alf-text-center {
    text-align: center;
}
.alf-text-left {
    text-align: left;
}
.alf-text-right {
    text-align: right;
}

.alf-mt-1 {
    margin-top: 0.5rem;
}
.alf-mt-2 {
    margin-top: 1rem;
}
.alf-mt-3 {
    margin-top: 1.5rem;
}
.alf-mt-4 {
    margin-top: 2rem;
}

.alf-mb-1 {
    margin-bottom: 0.5rem;
}
.alf-mb-2 {
    margin-bottom: 1rem;
}
.alf-mb-3 {
    margin-bottom: 1.5rem;
}
.alf-mb-4 {
    margin-bottom: 2rem;
}

.alf-p-1 {
    padding: 0.5rem;
}
.alf-p-2 {
    padding: 1rem;
}
.alf-p-3 {
    padding: 1.5rem;
}
.alf-p-4 {
    padding: 2rem;
}

.alf-hidden {
    display: none;
}
.alf-visible {
    opacity: 1;
}

/* Loading Animations */
.alf-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1d9bf0;
    border-radius: 50%;
    animation: alf-spin 1s linear infinite;
}

@keyframes alf-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Success/Error States */
.alf-success {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

.alf-error {
    background: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin: 1rem 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6c1df0, #24c2fb);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0ea5e9, #f59e0b);
}

/* Print Styles */
@media print {
    .alf-header,
    .alf-footer,
    .alf-popup,
    .alf-btn {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .alf-section {
        padding: 20px 0 !important;
    }
}
