:root {
        --font-family: "Poppins", sans-serif;
        --background: #FFFFFF;
        --text-primary: #1A1A1A;
        --text-secondary: #5A5A5A;
        --primary: #36454F;
        --secondary: #F5F5F5;
    }
@font-face {
        font-family: 'Poppins';
        src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
        }

@font-face {
        font-family: 'Poppins';
        src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal;
        }
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--text-primary);
    overflow-x: hidden;
}

.geometric-wrapper {
    position: relative;
    min-height: 100vh;
    background: var(--secondary);
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-duration: 25s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--text-secondary);
    bottom: -50px;
    left: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: -10s;
}

/* Bold Header */
.bold-header {
    position: relative;
    z-index: 10;
    background: var(--secondary);
    padding: 1.5rem 2rem;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-frame {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--text-secondary));
    padding: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.app-logo {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purchases-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.bold-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.nav-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;
}

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

.nav-btn:hover {
    background: var(--text-secondary);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav-btn span {
    position: relative;
    z-index: 1;
}

/* Vibrant Hero */
.vibrant-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.vibrant-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        color-mix(in srgb, var(--primary) 80%, transparent),
        color-mix(in srgb, var(--text-secondary) 90%, transparent));
    z-index: 1;
}

.hero-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -300px;
    right: -300px;
    z-index: 2;
    animation: rotate 30s linear infinite;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    animation: slideInRight 0.8s ease-out;
}

.hero-main {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-heading {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vibrant-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--text-secondary));
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.vibrant-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: rotate 3s linear infinite;
}

/* Main Sections */
.main-sections {
    position: relative;
    z-index: 5;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section {
    margin-bottom: 5rem;
    animation: slideInRight 0.6s ease-out;
}

h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 1rem;
    border-left: 6px solid var(--primary);
}

.description {
    overflow-wrap: break-word;
}

.description p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-primary);
    font-weight: 400;
}

/* Gallery Styles */
.gallery-section {
    position: relative;
    margin-top: 3rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-container img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--text-secondary);
}

.download_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--text-secondary));
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 2rem auto;
    cursor: pointer;
}

.download_button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Bold Footer */
.bold-footer {
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, var(--text-secondary), var(--primary));
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-accordion {
    margin-bottom: 3rem;
}

.accordion-block {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.accordion-head {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-head:hover {
    background: rgba(255, 255, 255, 0.25);
}

.accordion-head.active {
    background: rgba(255, 255, 255, 0.2);
}

.accordion-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-head.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-panel {
    display: none;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    animation: slideInRight 0.3s ease-out;
}

.accordion-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.accordion-panel a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-panel a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* Read More */
.description-block p {
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.description-block.collapsed p {
    max-height: 50dvh;
}

.description-block.collapsed p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    background: linear-gradient(to top, var(--secondary), rgba(255, 255, 255, 0));
}

.description-block .read-more {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    text-align: center;
    user-select: none;
    transition: color 0.2s ease;
    font-weight: 700;
    text-transform: uppercase;
}

.description-block .read-more:hover {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 3rem;
    }

    .brand-name {
        font-size: 1.75rem;
    }

    .main-sections {
        padding: 4rem 1.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bold-header {
        padding: 1rem 1.5rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .bold-nav {
        width: 100%;
        justify-content: center;
    }

    .logo-frame {
        width: 70px;
        height: 70px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .vibrant-hero {
        min-height: 500px;
        padding: 3rem 1.5rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-main {
        padding: 2rem;
    }

    .main-sections {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-container img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.25rem;
    }

    .logo-frame {
        width: 60px;
        height: 60px;
    }

    .vibrant-hero {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .vibrant-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .gallery-container img {
        height: 250px;
    }
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    width: 80%;
    max-width: 520px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    font-family: system-ui, sans-serif;
    z-index: 9999;
}

#cookie-banner.hidden {
    display: none;
}

#cookie-banner h2 {
    margin-top: 0;
    font-size: 18px;
}

#cookie-banner p {
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.5;
}

#cookie-categories label {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
}

#cookie-categories input {
    margin-right: 8px;
}

#cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

button {
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

#accept-all {
    background: #007bff;
    color: #fff;
}

#reject-all {
    background: #e0e0e0;
    color: #333;
}

#save-preferences {
    background: #4caf50;
    color: #fff;
}

#manage-cookies {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 13px;
    margin-top: 6px;
}

#cookie-settings {
    display: none;
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 480px;
    width: 80%;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

#cookie-settings.active {
    display: block;
    color: #333;
}

#cookie-settings h3 {
    margin-top: 0;
}

#open-cookie-settings {
    background: transparent;
    margin-top: 1rem;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f7f7f7;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.accordion-header:hover {
    background-color: #eee;
}

.accordion-content {
    display: none;
    padding: 10px 15px;
    background-color: #fff;
}

.accordion-content p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
}

.accordion-content label {
    font-size: 14px;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    display: block;
}

#cookie-buttons {
    margin-top: 15px;
}

#save-preferences {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

#save-preferences:hover {
    background-color: #0056b3;
}
canvas {
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}