/* ===================================
   NoBigPlay - Ultra Modern Design
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --accent: #00D9FF;
    --dark: #1A1A2E;
    --darker: #0F0F1E;
    --light: #FFFFFF;
    --gray: #E8E8E8;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --success: #00E676;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-2: linear-gradient(135deg, #00D9FF 0%, #0099FF 100%);
    --gradient-3: linear-gradient(135deg, #FF6B35 0%, #FF0080 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===================================
   HEADER - Ultra Modern
   =================================== */

header {
    background: var(--darker);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo-container .logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,107,53,0.5));
    transition: transform 0.3s ease;
}

.logo-container .logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* ===================================
   BUTTONS - Modern & Bold
   =================================== */

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
}

.btn-login:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.btn-register {
    background: var(--gradient-1);
    color: var(--light);
    box-shadow: 0 4px 20px rgba(255,107,53,0.3);
    position: relative;
    z-index: 1;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,107,53,0.5);
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

.btn-cta {
    background: var(--gradient-3);
    color: var(--light);
    padding: 22px 55px;
    font-size: 18px;
    box-shadow: 0 8px 35px rgba(255,107,53,0.4);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 45px rgba(255,107,53,0.6);
}

.btn-play {
    background: var(--gradient-2);
    color: var(--light);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,217,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-play::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,217,255,0.5);
    padding-right: 45px;
}

.btn-play:hover::after {
    opacity: 1;
    right: 15px;
}

/* ===================================
   HERO SECTION - Stunning
   =================================== */

.hero-section {
    background: var(--dark);
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,107,53,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,217,255,0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.2s both;
}

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

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   SECTION STYLES - Modern Cards
   =================================== */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 10px;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.why-players-section {
    background: var(--gray);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
    animation: bounce 2s ease-in-out infinite;
}

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

.feature-card h3 {
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* ===================================
   GAMES SECTION - Card Grid
   =================================== */

.games-section {
    background: var(--light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.game-card {
    background: var(--light);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-info {
    padding: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.game-title {
    color: var(--dark);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ===================================
   TOP PICK SECTION
   =================================== */

.top-pick-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.top-pick-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.top-pick-section .section-title {
    color: var(--light);
}

.top-pick-card {
    background: var(--light);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.top-pick-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===================================
   LEADERBOARD SECTION
   =================================== */

.champions-section {
    background: var(--gray);
}

.leaderboard {
    max-width: 900px;
    margin: 0 auto;
}

.leaderboard-item {
    background: var(--light);
    padding: 30px 40px;
    margin-bottom: 20px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.leaderboard-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.leaderboard-item:hover::before {
    transform: scaleY(1);
}

.leaderboard-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.rank {
    font-weight: 800;
    font-size: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score {
    font-weight: 800;
    color: var(--primary);
    font-size: 24px;
}

/* ===================================
   STEPS SECTION
   =================================== */

.get-started-section {
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--light);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
    transform: translateY(-50%);
}

.step-card:last-child::after {
    display: none;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.step-card h3 {
    color: var(--dark);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    background: var(--gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--light);
    padding: 45px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 18px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 120px 0;
    background: var(--dark);
    color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,107,53,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0,217,255,0.2) 0%, transparent 50%);
}

.cta-section h2 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ===================================
   DISCLAIMER SECTION
   =================================== */

.disclaimer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8CC 100%);
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: var(--dark);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
}

.disclaimer-content p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
}

/* ===================================
   FOOTER - Modern
   =================================== */

footer {
    background: var(--darker);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.gambling-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gambling-logos img {
    height: 45px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gambling-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    font-size: 14px;
}

/* ===================================
   MODAL STYLES - Modern
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light);
    margin: 3% auto;
    padding: 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-light);
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--dark);
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.spinner {
    display: none;
    border: 4px solid var(--gray);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-message {
    display: none;
    background: var(--success);
    color: var(--light);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.4s ease-out;
}

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

/* ===================================
   PAGE SPECIFIC STYLES
   =================================== */

.page-header {
    text-align: center;
    padding: 140px 0 60px;
    background: var(--dark);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 56px;
    color: var(--light);
    margin-bottom: 20px;
    font-weight: 900;
}

.page-header p {
    font-size: 22px;
    color: rgba(255,255,255,0.7);
}

.content-card {
    background: var(--light);
    padding: 70px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    margin: -50px auto 80px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.terms-page,
.about-page,
.contact-page {
    padding: 0 0 100px;
    background: var(--gray);
}

/* Game Page */
.game-page {
    padding: 0 0 100px;
    background: var(--gray);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin: 140px 0 40px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.back-link:hover {
    gap: 15px;
    color: var(--dark);
}

.game-container {
    background: var(--light);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-header h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.game-header p {
    font-size: 20px;
    color: var(--text-light);
}

.game-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.game-frame iframe {
    display: block;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 25px;
        padding: 15px 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

    .features-grid,
    .games-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 40px 30px;
    }

    .modal-content {
        padding: 40px 30px;
        margin: 10% auto;
    }

    .game-container {
        padding: 30px 20px;
    }

    .game-frame iframe {
        height: 400px;
    }

    .step-card::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

/* ===================================
   ANIMATIONS & EFFECTS
   =================================== */

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

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary);
    color: var(--light);
}

::-moz-selection {
    background: var(--primary);
    color: var(--light);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}