:root {
    --primary-color: #6C63FF;
    --secondary-color: #FF6584;
    --accent-color: #4CC9F0;
    --text-color: #2D3748;
    --bg-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --border-color: #E2E8F0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --section-padding: 100px 0;
}

[data-theme="dark"] {
    --primary-color: #7F5AF0;
    --secondary-color: #FF7E6B;
    --accent-color: #2CB67D;
    --text-color: #F8F9FA;
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --nav-bg: rgba(30, 30, 30, 0.95);
    --border-color: #333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

section {
    padding: var(--section-padding);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logopic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    color: var(--text-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* New Hero Section Styles */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-box{
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
}

.hero-social a {
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--text-color);
}

.hero-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
    margin-left: 2rem;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.hero-image-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    /* border: 3px solid var(--primary-color); */
    border-radius: 20px;
    z-index: 1;
}
/* TikTok Promo Styles */
.tiktok-promo {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,0,128,0.1) 0%, rgba(0,242,234,0.1) 100%);
}

.tiktok-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.tiktok-content {
    flex: 2;
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

.tiktok-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 2rem;
}

.tiktok-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.tiktok-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tiktok-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.tiktok-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.phone-mockup {
    position: relative;
    width: 180px;
    height: 360px;
    border: 12px solid #111;
    border-radius: 30px;
    background: #111;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.tiktok-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tiktok-card {
        flex-direction: column;
    }
    
    .tiktok-preview {
        padding: 1.5rem;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
}
/* Updated About Section */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-buttons, .hero-social {
        justify-content: center;
    }

    .hero-image {
        margin-left: 0;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        margin-top: 3rem;
    }
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .about-links {
        flex-direction: column;
    }
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}


/* Experience Section */
.experience {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    justify-content: center;
    align-items: center;

}

.experience-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 1rem;
}

.experience-date {
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;

}

.experience-company {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.experience-details p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.experience-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.experience-tags span {
    background-color: var(--bg-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .experience-date {
        align-self: flex-start;
    }
}/* Projects Section */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.iframe-container img {

    width: 100%;
    height: 100%;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: var(--transition);
}


.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.project-card:hover .iframe-container iframe {
    transform: scale(1.02);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.project-info p {
    margin-bottom: 1.2rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.tech-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tags span {
    background-color: var(--bg-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.section-footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Skills Section */
.skills {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 80px 0;
    margin: 40px 0;
        text-align: center;

}

.skills-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
        text-align: center;

}

.skills-category {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

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

.skills-category h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
        text-align: center;

}

.skills-category h3 i {
    font-size: 1.2rem;
}

.skills-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    flex-wrap: wrap;
    gap: 0.8rem;
        text-align: center;

}

.skill-item {
    background-color: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.skill-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
    z-index: -1;
}

.contact-content {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
        align-items: center;
    justify-content: center;
    align-items: center;

    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    padding: 0.8rem;
    border-radius: 8px;
}

.contact-item:hover {
    background-color: rgba(108, 99, 255, 0.1);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    font-size: 1.3rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
}

.footer-social a:hover {
    color: white;
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .skills-category {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .skills-category {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
    }
}

/* Header Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: all 0.5s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .theme-toggle {
        margin-left: auto;
        margin-right: 1rem;
    }
}

/* Hero Section Mobile Responsiveness */
@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-box {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image {
        margin-left: 0;
        max-width: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-image-decor {
        top: 15px;
        left: 15px;
    }
    
    .hero-social {
        gap: 1rem;
    }
}

/* Very small devices (phones, 400px and down) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .logo .logopic {
        width: 35px;
        height: 35px;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-image {
        max-width: 250px;
    }
}
/* TikTok Button Styles */
.btn-tiktok {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #000;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 242, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-tiktok:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 242, 234, 0.4);
}

/* TikTok gradient animation */
.btn-tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        #25F4EE 0%,
        #000 20%,
        #000 80%,
        #FE2C55 100%
    );
    background-size: 200% 200%;
    z-index: -1;
    animation: tiktokGradient 3s ease infinite;
    border-radius: 50px;
}

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

.tiktok-icon {
    font-size: 1.4rem;
    color: white;
    z-index: 2;
}

.tiktok-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    z-index: 2;
}

.tiktok-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.tiktok-arrow {
    margin-left: 8px;
    transform: translateX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.btn-tiktok:hover .tiktok-arrow {
    transform: translateX(4px);
}

/* Glare effect */
.tiktok-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    transform: rotate(30deg);
    transition: all 0.5s ease;
    z-index: 1;
}

.btn-tiktok:hover .tiktok-glare {
    left: 100%;
    top: 100%;
}

/* Pulsing effect on page load */
@keyframes tiktokPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-tiktok {
    animation: tiktokPulse 2s ease infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .btn-tiktok {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .tiktok-subtext {
        font-size: 0.7rem;
    }
}