:root {
    --bg-color-dark: #0a0c10;
    --text-color-dark: #e0e6e9;
    --accent-color-dark: #00e0ff;
    --secondary-accent-dark: #00aaff;
    --card-bg-dark: #1e222d;
    --border-color-dark: rgba(255, 255, 255, 0.1);

    --bg-color-light: #f5f8ff;
    --text-color-light: #333;
    --accent-color-light: #44aaff;
    --secondary-accent-light: #2c72b8;
    --card-bg-light: #ffffff;
    --border-color-light: rgba(0, 0, 0, 0.1);

    --transition-speed: 0.5s;
    --font-family: 'Roboto', sans-serif;

    --cursor-dot-size: 12px;
    --cursor-dot-glow-dark: 0 0 12px #00e0ff, 0 0 24px #00e0ff;
    --cursor-dot-glow-light: 0 0 12px #44aaff, 0 0 24px #44aaff;
    --cursor-circle-size: 40px;
    --cursor-circle-border-dark: 2px solid #00e0ff;
    --cursor-circle-border-light: 2px solid #44aaff;
}

[data-theme="dark"] {
    --bg-color: var(--bg-color-dark);
    --text-color: var(--text-color-dark);
    --accent-color: var(--accent-color-dark);
    --secondary-accent: var(--secondary-accent-dark);
    --card-bg: var(--card-bg-dark);
    --border-color: var(--border-color-dark);
    --cursor-dot-glow: var(--cursor-dot-glow-dark);
    --cursor-circle-border: var(--cursor-circle-border-dark);
}

[data-theme="light"] {
    --bg-color: var(--bg-color-light);
    --text-color: var(--text-color-light);
    --accent-color: var(--accent-color-light);
    --secondary-accent: var(--secondary-accent-light);
    --card-bg: var(--card-bg-light);
    --border-color: var(--border-color-light);
    --cursor-dot-glow: var(--cursor-dot-glow-light);
    --cursor-circle-border: var(--cursor-circle-border-light);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    cursor: none;
}
/* Custom Cursor Styles */
.custom-cursor-dot {
    position: fixed !important;
    top: 0;
    left: 0;
    width: var(--cursor-dot-size);
    height: var(--cursor-dot-size);
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: var(--cursor-dot-glow);
    pointer-events: none !important;
    z-index: 9999 !important;
    transform: translate(-50%, -50%);
    transition: background 0.2s, box-shadow 0.2s;
}
.custom-cursor-circle {
    position: fixed !important;
    top: 0;
    left: 0;
    width: var(--cursor-circle-size);
    height: var(--cursor-circle-size);
    border-radius: 50%;
    border: var(--cursor-circle-border);
    pointer-events: none !important;
    z-index: 9998 !important;
    transform: translate(-50%, -50%);
    transition: border 0.2s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-color); }
}

/* Header & Nav */
header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-switch {
    position: relative;
    width: 60px;
    height: 34px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-icon {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-bg);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-icon:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-color);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-icon {
    background: var(--accent-color);
}

input:checked + .toggle-icon:before {
    transform: translateX(26px);
    background-color: var(--card-bg);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn.primary {
    background: var(--accent-color);
    color: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 224, 255, 0.3);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-color);
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.typewriter-text {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    font-size: clamp(1rem, 3vw, 2rem);
    border-right: .15em solid var(--accent-color);
    animation: typewriter 4s steps(40, end), blink-caret .75s step-end infinite;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.about-content p {
    max-width: 800px;
    font-size: 1.1rem;
}

.skills {
    text-align: center;
}

.skill-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.skill-icons i {
    font-size: 3rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.skill-icons i:hover {
    transform: scale(1.1);
}

/* Bots Section */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bot-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.bot-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.bot-card:hover .bot-image {
    transform: scale(1.05);
}

.bot-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.bot-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.banner {
    width: 100%;
    height: 100px;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.bot-card:hover .banner {
    opacity: 0.6;
}

.bot-content {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-info {
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-accent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Pricing Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-box {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.pricing-box .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-box .price small {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-color);
    opacity: 0.7;
}

.pricing-box .description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-box .features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing-box .features li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-box .features i {
    color: var(--accent-color);
}

.background-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

main {
    position: relative;
    z-index: 1;
}