        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            overflow-x: hidden;
            background-color: #1a2a1d;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
        }

        .content-heading {
            color: rgba(153, 204, 0, 0.8);
            margin-bottom: 0px;
            font-size: 3.5rem;
            text-align: center;
        }

        .embed-container {
            width: 100%;
            margin: 5px auto;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(30, 45, 35, 0.8);
            padding: 5px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #canvas {
            position: fixed;
            top: 0;
            left: 0;
            z-index: -1;
        }
        
        .nav-menu {
            display: flex;
            justify-content: center;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 15px 0;
            margin-bottom: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            max-width: 800px;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 20px;
        }
        
        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: .9rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-menu li a:hover {
            background-color: rgba(66, 149, 197, 0.3);
        }
        
        .nav-menu li a.active {
            background-color: rgba(66, 149, 197, 0.6);
        }
        
        #content {
            width: 100%;
            max-width: 100%;
            padding: 40px 0; 
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .header {
            width: 100%;
            max-width: 800px;
            padding: 0 20px;
            box-sizing: border-box;
        }
        
        .header h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            color: rgba(153, 204, 0, 0.8);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-style: italic;
            color: white;
        }
        
        .slideshow-container {
            width: 100%;
            max-width: 800px;
            min-height: 500px;
            position: relative;
            background: rgba(44, 62, 50, 0.9);
            border-radius: 15px;
            padding: 0px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
        }

        .slideshow-container h1 {
            color: rgba(153, 204, 0, 0.8);
            margin-bottom: 0px;
            font-size: 2rem;
            text-align: center;
        }
        
        .slide {
            display: none;
            opacity: 0;
            transition: opacity 0.6s ease;
            padding: 0px;
        }
        
        .slide.active {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1;
            padding: 10px;
            animation: slideIn 0.7s ease;
        }
        
        .platform-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            width: 100%;
            background: rgba(30, 45, 35, 0.8);
            padding: 10px 15px;
            border-radius: 8px;
        }
        
        .platform-logo {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            filter: invert(1);
        }
        
        .username {
            font-weight: 600;
            color: #ffffff;
        }
        
        .post-content {
            width: 100%;
            margin: 15px 0;
            font-size: 1.1rem;
            line-height: 1.5;
            color: #ffffff;
        }
        
        .post-image {
            width: 100%;
            max-height: 350px;
            object-fit: cover;
            border-radius: 10px;
            margin: 15px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .button-container {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            width: 100%;
            justify-content: center;
        }
        
        .link-button, .is-this-you-button {
            padding: 12px 24px;
            background: #4295c5;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            min-width: 180px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1rem;
            line-height: 1.5;
            display: inline-block;
        }
        
        .link-button:hover, .is-this-you-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(66, 149, 197, 0.4);
        }
        
        .nav-buttons {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .nav-button {
            background: rgba(0, 0, 0, 0.3);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-button:hover {
            background: rgba(0, 0, 0, 0.5);
        }
        
        .loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 300px;
        }
        
        .loading-spinner {
            border: 4px solid rgba(255, 255, 255, 0.1);
            border-top: 4px solid #4295c5;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin-bottom: 15px;
        }
        
        .content-section {
            width: 100%;
            max-width: 800px;
            background: rgba(44, 62, 50, 0.9);
            border-radius: 5px;
            padding: 20px;
            margin-top: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: none; 
            animation: fadeIn 0.6s ease-in;
            backdrop-filter: blur(5px);
        }
        
        .content-section h1 {
            color: rgba(153, 204, 0, 0.8);
            margin-bottom: 20px;
            font-size: 2rem;
            text-align: center;
        }
        
        .content-section p {
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 1.1rem;
            color: #ffffff;
        }

        .content-section a {
            display: inline-block;
            color: #4295c5;
            text-decoration: none;
            background: rgba(44, 62, 50, 0.7);
            padding: 8px 12px;
            margin: 2px 0;
            border-radius: 6px;
            transition: all 0.25s ease;
            border: 1px solid rgba(66, 149, 197, 0.3);
        }

        .content-section a:hover {
            background: rgba(66, 149, 197, 0.4);
            color: white;
            transform: translateX(5px);
        }

        .content-section a > span[class*="emoji"],
        .content-section a > img {
            margin-right: 8px;
        }
    
        .interview-question {
            font-weight: bold;
            color: #4295c5;
            margin-top: 20px;
        }
        
        .interview-answer {
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 3px solid rgba(153, 204, 0, 0.4);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 100;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            background: rgba(36, 58, 39, 0.95);
            border-radius: 15px;
            padding: 25px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: auto;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            border: 1px solid rgba(121, 194, 103, 0.4);
        }
        
        .modal.active .modal-content {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            background: rgba(121, 194, 103, 0.2);
            border: 1px solid rgba(121, 194, 103, 0.4);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            background: rgba(121, 194, 103, 0.4);
        }
        
        .form-container {
            width: 100%;
            height: 600px;
            border: none;
            background: white;
            border-radius: 10px;
        }

        /* Product grid for Gear section */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .product-card {
            background: rgba(30, 45, 35, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: rgba(153, 204, 0, 0.9);
        }
        
        .product-price {
            color: #4295c5;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .product-description {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        /* Event cards for Events section */
        .event-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        
        .event-card {
            background: rgba(30, 45, 35, 0.8);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .event-date {
            font-weight: 600;
            color: #4295c5;
        }
        
        .event-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(153, 204, 0, 0.9);
        }
        
        .event-location {
            font-style: italic;
            opacity: 0.9;
        }
        
        /* Contact form styles */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .form-label {
            font-weight: 600;
            color: #4295c5;
        }
        
        .form-input, .form-textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(121, 194, 103, 0.4);
            background: rgba(30, 45, 35, 0.8);
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-button {
            padding: 12px 24px;
            background: #4295c5;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: 10px;
        }
        
        .submit-button:hover {
            background: #3a84b0;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(66, 149, 197, 0.4);
        }
        
        /* Gallery grid for Pony and Puppy sections */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .testimonial {
            background: rgba(30, 45, 35, 0.8);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 4rem;
            color: rgba(153, 204, 0, 0.2);
            line-height: 1;
        }
        
        .testimonial-content {
            padding-left: 30px;
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-author {
            text-align: right;
            font-weight: 600;
            color: #4295c5;
        }
    
        .nav-menu {
            max-width: 800px;
        }
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 20px; /* Reduced gap between items */
        }
        
        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 6px; /* Adjusted padding */
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @media (min-width: 451px) and (max-width: 900px) {
            .nav-menu ul {
                gap: 2px;
            }
            
            .nav-menu li a {
                padding: 6px 4px;
                font-size: 0.75rem;
                gap: 3px;
            }
        }

        @media (min-width: 800px) {
            .nav-menu, 
            .slideshow-container, 
            .content-section,
            .header {
                width: 800px; /* Fixed width on larger screens */
        }
    }