/* Main variables and reset */
:root {
    --primary-color: #8a2be2; /* Purple as primary color */
    --secondary-color: #ff6b6b; /* Pinkish red as secondary */
    --tertiary-color: #00e676; /* Green accent for fun elements */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-bg: #1e1e1e;
    --text-color: #f5f5f5;
    --text-secondary: #b3b3b3;
    --accent-color: #00c2ff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #4a00e0);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff3d3d);
    --gradient-fun: linear-gradient(135deg, #ff9a44, #fc6076);
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --font-fun: 'Comic Neue', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.03) 0%, transparent 200px),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 200px),
        radial-gradient(circle at 40% 70%, rgba(0, 194, 255, 0.03) 0%, transparent 200px);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

section h2 i {
    color: var(--primary-color);
    font-size: 0.8em;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(138, 43, 226, 0.2);
    z-index: -1;
    border-radius: 5px;
}

/* Fun emoji styling */
.emoji-rain {
    display: inline-block;
    animation: bounce 0.8s infinite alternate;
    font-size: 0.8em;
    margin-left: 5px;
    position: relative;
    transform-origin: center;
}

.small-emoji {
    font-size: 0.6em;
    vertical-align: middle;
    display: inline-block;
    margin-left: 5px;
    animation: wiggle 2s ease-in-out infinite;
}

.bounce-text {
    display: inline-block;
    animation: letterBounce 2s infinite;
}

.bounce-text:nth-child(2) {
    animation-delay: 0.2s;
}

/* Text styles */
.section-tagline {
    text-align: center;
    font-family: var(--font-fun);
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-tagline {
    font-family: var(--font-fun);
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.small-text {
    font-size: 0.7em;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.community-tagline {
    font-family: var(--font-fun);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
    color: var(--accent-color);
    background-color: rgba(0, 194, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 1px dashed rgba(0, 194, 255, 0.3);
}

.token-joke {
    font-family: var(--font-fun);
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: -10px;
    font-style: italic;
}

.newsletter-joke {
    font-family: var(--font-fun);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-style: italic;
}

.footer-joke {
    font-family: var(--font-fun);
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg);
}

.logo-icon .dog-icon, 
.logo-icon .cat-icon {
    position: absolute;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo-icon .dog-icon {
    transform: translateX(-5px);
}

.logo-icon .cat-icon {
    transform: translateX(5px);
}

.logo:hover .dog-icon {
    transform: translateX(-8px) rotate(-10deg);
}

.logo:hover .cat-icon {
    transform: translateX(8px) rotate(10deg);
}

.wiggle {
    animation: wiggle 2.5s infinite ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(10deg); }
}

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

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

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

.burger {
    display: none;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: radial-gradient(circle at center, var(--light-bg) 0%, var(--dark-bg) 70%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.hero-images {
    margin: 40px 0;
    position: relative;
    height: 200px;
}

.hero-image-container {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
}

.speech-bubble {
    position: absolute;
    background-color: white;
    color: var(--dark-bg);
    padding: 10px 15px;
    border-radius: 15px;
    font-family: var(--font-fun);
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    z-index: -1;
}

.dog-bubble {
    left: -20px;
    top: 30px;
}

.dog-bubble::after {
    left: 20px;
}

.cat-bubble {
    right: -20px;
    top: 30px;
}

.cat-bubble::after {
    right: 20px;
}

.hero-image-container:hover .speech-bubble {
    opacity: 1;
    transform: translateY(-10px);
}

.dog-half, .cat-half {
    position: absolute;
    width: 150px;
    height: 200px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.dog-half i, .cat-half i {
    font-size: 8rem;
}

.dog-half {
    left: 0;
    transform: translateX(-30px);
}

.dog-half i {
    color: var(--primary-color);
}

.cat-half {
    right: 0;
    transform: translateX(30px);
}

.cat-half i {
    color: var(--secondary-color);
}

.hero-image-container:hover .dog-half {
    transform: translateX(-10px) rotate(-5deg);
}

.hero-image-container:hover .cat-half {
    transform: translateX(10px) rotate(5deg);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn i {
    font-size: 1.1em;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
}

.primary-btn:hover i {
    animation: swing 1s ease;
}

.secondary-btn {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secondary-btn i {
    font-size: 1.1em;
}

.secondary-btn:hover {
    background-color: rgba(138, 43, 226, 0.1);
    transform: translateY(-3px);
}

.secondary-btn:hover i {
    animation: tada 1s ease;
}

@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes tada {
    0% { transform: scale(1); }
    10%, 20% { transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
    100% { transform: scale(1) rotate(0); }
}

.funny-btn {
    background: var(--gradient-fun);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.funny-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.funny-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.funny-btn:hover::before {
    left: 100%;
}

.funny-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.funny-btn:hover i {
    transform: rotate(20deg);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: float 15s linear infinite;
}

.floating-elements i:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.floating-elements i:nth-child(2) {
    top: 20%;
    right: 20%;
    font-size: 1.5rem;
    animation-delay: 2s;
}

.floating-elements i:nth-child(3) {
    bottom: 15%;
    left: 30%;
    font-size: 1.8rem;
    animation-delay: 4s;
}

.floating-elements i:nth-child(4) {
    bottom: 25%;
    right: 15%;
    font-size: 2.2rem;
    animation-delay: 6s;
}

.floating-elements i:nth-child(5) {
    top: 40%;
    left: 15%;
    font-size: 1.7rem;
    animation-delay: 8s;
}

.floating-elements i:nth-child(6) {
    top: 60%;
    right: 25%;
    font-size: 1.9rem;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        transform: translate(100px, 100px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        opacity: 0.3;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.1;
    }
}

/* About Section */
.about {
    background-color: var(--darker-bg);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.fun-fact {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    border: 2px dashed var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.fun-fact::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.fun-fact h4 {
    font-family: var(--font-fun);
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fun-fact p {
    font-family: var(--font-fun);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.about-text {
    flex: 1;
}

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

.dogat-character {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.dogat-character:hover {
    transform: scale(1.05);
}

.dogat-character i {
    font-size: 3rem;
}

.dogat-character i.fa-dog {
    color: var(--primary-color);
}

.dogat-character i.fa-cat {
    color: var(--secondary-color);
}

.dogat-character i.fa-plus,
.dogat-character i.fa-equals {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.dogat-character i.fa-coins {
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

/* Features Section */
.features {
    padding: 100px 20px;
}

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

.feature-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.spinning {
    animation: spin 10s linear infinite;
}

.bouncing {
    animation: bounce 2s ease infinite;
}

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

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes wobble {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-10px) rotate(-5deg); }
    30% { transform: translateX(8px) rotate(4deg); }
    45% { transform: translateX(-6px) rotate(-2deg); }
    60% { transform: translateX(4px) rotate(1deg); }
    75% { transform: translateX(-2px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.feature-card h3 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Tokenomics Section */
.tokenomics {
    background-color: var(--darker-bg);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tokenomics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.tokenomics-chart {
    flex: 1;
    min-width: 300px;
    height: 300px;
}

.tokenomics-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.token-info-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.token-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.token-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.token-info-item p {
    margin-bottom: 0;
    font-weight: 600;
}

/* Community Section */
.community {
    text-align: center;
    padding: 100px 20px;
}

.community p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

#floating-social-links a {
    transition: transform 0.5s ease, background 0.3s ease;
}

#floating-social-links:hover a {
    transform: translateY(-10px);
}

#floating-social-links a:hover {
    transform: translateY(-20px) scale(1.2);
    z-index: 10;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 20px;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.roadmap-item {
    position: relative;
    padding: 20px 0;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.roadmap-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.roadmap-item:nth-child(odd) .roadmap-content {
    left: 55%;
}

.roadmap-item:nth-child(even) .roadmap-content {
    left: 0;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.roadmap-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.roadmap-content ul {
    list-style-type: none;
    padding-left: 0;
}

.roadmap-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-secondary);
}

.roadmap-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    position: relative;
}

.footer-logo .logo-icon i {
    font-size: 1.5rem;
}

.footer-logo:hover .dog-icon {
    transform: translateX(-8px) rotate(-10deg);
}

.footer-logo:hover .cat-icon {
    transform: translateX(8px) rotate(10deg);
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-newsletter h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: var(--light-bg);
    color: var(--text-color);
    outline: none;
}

.newsletter-form button {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Dogat Mascot */
.dogat-mascot {
    position: fixed;
    bottom: 20px;
    right: -100px;
    z-index: 900;
    transition: all 0.5s ease;
    cursor: pointer;
}

.mascot-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mascot-icon-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mascot-icon i {
    font-size: 2.5rem;
    color: white;
    position: absolute;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.mascot-icon .fa-dog {
    transform: translateX(-15px) translateY(-5px);
}

.mascot-icon .fa-cat {
    transform: translateX(15px) translateY(-5px);
}

.mascot-coin {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite alternate;
}

.mascot-coin i {
    font-size: 1.8rem;
    color: gold;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.dogat-mascot:hover .mascot-icon {
    transform: scale(1.1) rotate(5deg);
}

.dogat-mascot.show {
    right: 20px;
}

.mascot-speech {
    position: absolute;
    top: -50px;
    right: 0;
    background-color: white;
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 15px;
    font-family: var(--font-fun);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mascot-speech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 15px;
    height: 15px;
    background-color: white;
    transform: rotate(45deg);
}

.dogat-mascot:hover .mascot-speech {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor i {
    color: var(--primary-color);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.5));
    transition: transform 0.2s, color 0.2s;
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(138, 43, 226, 0.1);
}

.custom-cursor.active i {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 2000;
    width: 0%;
    transition: width 0.1s ease;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .roadmap-timeline::before {
        left: 30px;
    }

    .roadmap-item::before {
        left: 30px;
    }

    .roadmap-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: var(--darker-bg);
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: var(--transition);
        padding: 20px 0;
        border-radius: 0 0 0 10px;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--light-bg);
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

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

.cookie-content h3 {
    font-family: var(--font-fun);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.cookie-buttons button {
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-buttons button:first-child {
    background: var(--gradient-primary);
    color: white;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-secondary);
}

.cookie-buttons button:hover {
    transform: translateY(-3px);
}

/* Joke popup */
.joke-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    max-width: 400px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.joke-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.joke-content {
    text-align: center;
}

.joke-content h3 {
    font-family: var(--font-fun);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.joke-content p {
    font-family: var(--font-fun);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.joke-content button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-fun);
}

.joke-content button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 60px 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .roadmap-content {
        padding: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
