* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: 
        radial-gradient(circle at 50% 15%, rgba(20, 15, 30, 0.95) 0%, rgba(25, 18, 40, 1) 60%),
        radial-gradient(circle at 50% 85%, rgba(40, 30, 60, 0.9) 0%, transparent 70%),
        linear-gradient(180deg, #1A1425 0%, #2A1B3A 100%);
    color: #F5EFF7;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* MAIN */
#intro {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: 
        radial-gradient(circle at 30% 20%, rgba(180, 85, 230, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #1E1528 0%, #2D1F40 100%);
}

.main {
    width: 92%;
    max-width: 1200px;
}

.card {
    background: rgba(35, 25, 50, 0.75);
    border-radius: 26px;
    padding: 42px;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 0 0 1px rgba(180, 85, 230, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* TOP TAGS */
.top-tags {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
}

.top-tags span {
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
    color: #D8C3E8;
    font-weight: 500;
}

.dot {
    color: #FF69B4;
}

/* CONTENT */
.content {
    display: flex;
    gap: 60px;
}

/* LEFT */
.left h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, #E6D4F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desc {
    margin: 18px 0 28px;
    font-size: 15px;
    color: #D8C3E8;
    max-width: 460px;
    line-height: 1.6;
}

.live-line {
    margin-bottom: 22px;
}

.live-line span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #FF69B4;
    font-weight: 600;
    text-transform: uppercase;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 14px;
}

.btn {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #E6D4F5;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn i {
    color: #B455E6;
}

.btn:hover {
    background: linear-gradient(135deg, rgba(180, 85, 230, 0.3), rgba(255, 105, 180, 0.25));
    border-color: #B455E6;
    box-shadow: 0 0 30px rgba(180, 85, 230, 0.4);
    transform: translateY(-2px);
}

/* SITE LINK (LEFT) */
.site-link {
    margin-top: 22px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #B455E6;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

/* RIGHT CARD */
.right {
    flex: 1;
    background: rgba(40, 30, 55, 0.8);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    box-shadow: 
        inset 0 0 0 1px rgba(180, 85, 230, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* RIGHT HEADER */
.right-head {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 2px;
    color: #D8C3E8;
    margin-bottom: 20px;
    font-weight: 500;
}

.online {
    color: #FF69B4;
    font-weight: 600;
}

/* ORBIT */
.orbit-box {
    width: 240px;
    height: 240px;
    margin: auto;
    position: relative;
}

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(180, 85, 230, 0.4);
    animation: spin 16s linear infinite;
}

.orbit i {
    position: absolute;
    background: #1E1528;
    color: #B455E6;
    padding: 7px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(180, 85, 230, 0.5);
    font-size: 13px;
    border: 1px solid rgba(180, 85, 230, 0.4);
}

.i1 { top: -8px; left: 50%; transform: translateX(-50%); }
.i2 { right: -8px; top: 50%; transform: translateY(-50%); }
.i3 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.i4 { left: -8px; top: 50%; transform: translateY(-50%); }

/* CENTER */
.core {
    position: absolute;
    inset: 52px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 85, 230, 0.3) 0%, rgba(255, 105, 180, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 0 1px rgba(180, 85, 230, 0.3),
        0 0 60px rgba(180, 85, 230, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 85, 230, 0.4);
}

.core span {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
}

/* STATS */
.stats {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}

.stats div {
    flex: 1;
    padding: 14px;
    background: rgba(35, 25, 50, 0.7);
    border-radius: 14px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stats div:hover {
    border-color: rgba(180, 85, 230, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stats h4 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.stats p {
    font-size: 12px;
    color: #D8C3E8;
    font-weight: 500;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.smooth-out {
    animation: smoothOut 1.2s ease forwards;
}

@keyframes smoothOut {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(25px);
    }
}

/* ===== ANIMATION TYPES ===== */
.from-top {
    opacity: 0;
    transform: translateY(-40px);
    animation: fromTop 0.8s ease forwards;
}
@keyframes fromTop {
    to { opacity: 1; transform: translateY(0); }
}

.from-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fromLeft 0.8s ease forwards;
}
@keyframes fromLeft {
    to { opacity: 1; transform: translateX(0); }
}

.from-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fromRight 0.8s ease forwards;
}
@keyframes fromRight {
    to { opacity: 1; transform: translateX(0); }
}

.from-bottom {
    opacity: 0;
    transform: translateY(40px);
    animation: fromBottom 0.8s ease forwards;
}
@keyframes fromBottom {
    to { opacity: 1; transform: translateY(0); }
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.8s ease forwards;
}
@keyframes zoomIn {
    to { opacity: 1; transform: scale(1); }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(25, 18, 40, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-list {
    margin: 0 20px;
}

.div-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ul-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 10px 24px;
    border-radius: 30px;
    background: rgba(35, 25, 50, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.ul-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 25px;
    padding: 10px 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.ul-list li a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #D8C3E8;
    font-size: 14px;
    transition: 0.3s;
    font-weight: 500;
}

.ul-list li i {
    color: #B455E6;
    transition: 0.3s;
}

.ul-list li:hover {
    background: rgba(180, 85, 230, 0.2);
    border: 1px solid rgba(180, 85, 230, 0.3);
}

.ul-list li.active {
    background: linear-gradient(135deg, rgba(180, 85, 230, 0.3), rgba(255, 105, 180, 0.2));
    border: 1px solid rgba(180, 85, 230, 0.4);
    box-shadow: 0 0 25px rgba(180, 85, 230, 0.3);
}

.ul-list li.active a,
.ul-list li.active i {
    color: #FFFFFF;
}

/* HOME */
.home {
    margin: 160px 200px;
    color: #F5EFF7;
}

.home-container {
    display: flex;
    gap: 6rem;
    align-items: center;
    justify-content: space-between; /* Changed to space-between to push image to the right */
}

.home-p {
    background: linear-gradient(135deg, rgba(180, 85, 230, 0.25), rgba(255, 105, 180, 0.2));
    color: #B455E6;
    display: inline-block;
    border-radius: 25px;
    padding: 6px 14px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(180, 85, 230, 0.3);
    backdrop-filter: blur(10px);
}

.home-s {
    font-weight: bold;
    color: #45f300;
}

.info-home {
    flex: 1;
    max-width: 600px; /* Limit text width */
}

.info-home h1 {
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6D4F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-home h3 {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    color: #B455E6;
    font-weight: 600;
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-p {
    color: #D8C3E8;
    padding-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

.info-p p {
    padding-bottom: 5px;
}

.info-p2 {
    display: flex;
    gap: 1rem;
    color: #E6D4F5;
    font-size: 14px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.info-p2 p {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(35, 25, 50, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btnn {
    display: flex;
    gap: 1rem;
    padding-bottom: 30px;
}

.btn-home1 {
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 0 40px rgba(180, 85, 230, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-home1:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(180, 85, 230, 0.6);
}

.hhr {
    padding-bottom: 30px;
}

hr {
    width: 90%;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 85, 230, 0.4), transparent);
}

.follow {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.followw {
    color: #D8C3E8;
    font-size: 14px;
    font-weight: 500;
}

.follow ul {
    display: flex;
    gap: 2rem;
    font-size: 20px;
    list-style: none;
}

.follow ul li {
    list-style: none;
}

.follow ul a {
    text-decoration: none;
    color: #D8C3E8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(35, 25, 50, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.follow ul a:hover {
    color: #B455E6;
    border-color: rgba(180, 85, 230, 0.4);
    background: rgba(180, 85, 230, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(180, 85, 230, 0.3);
}

/* HOME IMAGE - UPDATED with right positioning */
.home img {
    width: 430px; /* Increased from 400px */
    height: 430px; /* Added fixed height */
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(180, 85, 230, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    object-fit: cover; /* Ensure image covers the area properly */
    margin-left: auto; /* Push image to the right */
}

/* ABOUT */
.about {
    margin: 160px 200px;
    font-family: 'Inter', sans-serif;
    color: #F5EFF7;
}

.about-info {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 4rem;
    align-items: center;
}

/* ABOUT IMAGE - UPDATED */
.img-about img {
    width: 80px; /* Increased from 55px */
    height: 80px; /* Added fixed height */
    border-radius: 50%;
    border: 2px solid rgba(180, 85, 230, 0.4);
    box-shadow: 0 0 30px rgba(180, 85, 230, 0.3);
    backdrop-filter: blur(10px);
    object-fit: cover; /* Ensure image covers the area properly */
}

.info-text {
    position: relative;
    bottom: -6px;
}

.info-text p {
    color: #D8C3E8;
    font-size: 14px;
    font-weight: 500;
}

.info-text h5 {
    margin-bottom: 4px;
    color: #B455E6;
    font-size: 18px;
    font-weight: 600;
}

.about h3 {
    margin-bottom: 2rem;
    font-size: 32px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #B455E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: #E6D4F5;
    line-height: 1.7;
    font-size: 16px;
    max-width: 700px;
}

.about-text span {
    color: #B455E6;
    font-weight: 600;
}

.about-info2 {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.photo-container {
    position: relative;
    display: inline-block;
    padding: 16px;
    background: rgba(35, 25, 50, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ABOUT PHOTO CONTAINER IMAGE - UPDATED */
.photo-container img {
    width: 350px; /* Increased from 280px */
    height: 350px; /* Added fixed height */
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    object-fit: cover; /* Ensure image covers the area properly */
}

.tape {
    position: absolute;
    width: 100px;
    height: 32px;
    background: linear-gradient(145deg, #2A1F35, #1E1528);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.15),
        inset 0 -2px 4px rgba(0,0,0,0.8),
        0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    opacity: 0.9;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.05),
        rgba(180, 85, 230, 0.15),
        rgba(255,255,255,0.05)
    );
}

/* Adjusted tape positions for larger image */
.tape1 {
    top: -25px; /* Adjusted for larger image */
    left: 50px;
    transform: rotate(-10deg);
}

.tape2 {
    bottom: -25px; /* Adjusted for larger image */
    right: 50px;
    transform: rotate(10deg);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    margin: 160px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #F5EFF7;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 85, 230, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.gallery-header span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #FF69B4;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B455E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 18px;
    color: #D8C3E8;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.gallery-view-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 50px rgba(180, 85, 230, 0.4);
}

.gallery-view-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 70px rgba(180, 85, 230, 0.6);
}

.gallery-content {
    width: 100%;
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    background: rgba(35, 25, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 400px;
}

.gallery-item:nth-child(2) {
    height: 400px;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(180, 85, 230, 0.3);
    border-color: rgba(180, 85, 230, 0.4);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(25, 18, 40, 0.95), transparent);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 14px;
    color: #E6D4F5;
    margin-bottom: 15px;
}

.gallery-preview-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    color: #FFFFFF;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(180, 85, 230, 0.4);
    z-index: 2;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 18, 40, 0.95);
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 
        0 0 100px rgba(180, 85, 230, 0.4),
        0 0 0 1px rgba(180, 85, 230, 0.3);
    animation: modalZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes modalZoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #B455E6;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 25, 50, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.close-modal:hover {
    color: #FFFFFF;
    background: rgba(180, 85, 230, 0.4);
    transform: scale(1.2) rotate(90deg);
}

#modal-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    background: rgba(35, 25, 50, 0.9);
    padding: 15px 30px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 80%;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 2001;
}

.modal-nav-btn {
    background: rgba(35, 25, 50, 0.9);
    color: #B455E6;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
    background: rgba(180, 85, 230, 0.4);
    color: #FFFFFF;
    transform: scale(1.1);
    border-color: rgba(180, 85, 230, 0.4);
}

/* ================= CONTACT SECTION ================= */
#contact {
    width: 100%;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: 
        radial-gradient(circle at 30% 30%, rgba(180, 85, 230, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #1E1528 0%, #2D1F40 100%);
}

.contact-content {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: auto;
}

.contact-info p {
    color: #D8C3E8;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 18px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #E6D4F5;
    padding: 15px;
    background: rgba(35, 25, 50, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(180, 85, 230, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-item svg {
    color: #B455E6;
    filter: drop-shadow(0 0 10px rgba(180, 85, 230, 0.4));
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(35, 25, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B455E6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: scale(1.15);
    color: #FFFFFF;
    background: rgba(180, 85, 230, 0.3);
    border-color: rgba(180, 85, 230, 0.4);
    box-shadow: 0 10px 30px rgba(180, 85, 230, 0.4);
}

.contact-form {
    background: rgba(35, 25, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(25, 18, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #F5EFF7;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B455E6;
    box-shadow: 0 0 30px rgba(180, 85, 230, 0.3);
    background: rgba(25, 18, 40, 0.8);
}

/* ANIMATION PRESETS */
.slide-in-left {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-in-right {
    transform: translateX(40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-in-up {
    transform: translateY(40px);
    opacity: 0;
    transition: all 1.2s ease;
}

/* ================= REVIEWS SECTION ================= */
#reviews {
    margin: 160px 0;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #F5EFF7;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(180, 85, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        rgba(25, 18, 40, 0.6);
    border-radius: 0;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Override container styles */
#reviews .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Title container - stays in middle */
.reviews-title-container {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Title styling */
.reviews-title-container > p:first-child {
    color: #FF69B4;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.reviews-title-container .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B455E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
}

.reviews-title-container hr {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #B455E6, #FF69B4);
    border: none;
    margin: 20px auto;
}

.reviews-title-container .info-pro p {
    color: #D8C3E8;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews wrapper - FULL WIDTH, NO PADDING OR MARGIN */
.reviews-wrapper {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Main container - FULL WIDTH, NO PADDING */
.reviews-container {
    display: flex;
    width: 100%;
    position: relative;
    overflow: visible;
    margin: 0;
    padding: 0;
}

/* REVIEWS TRACK - START FROM RIGHT, FULL WIDTH */
.reviews-track {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    animation: floatReviews 40s linear infinite;
    animation-play-state: running;
    will-change: transform;
    transform: translateX(100%);
    width: fit-content;
}

/* Pause animation on hover */
.reviews-track:hover {
    animation-play-state: paused;
}

/* Review card styling */
.review-card {
    width: 350px;
    background: rgba(35, 25, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Add a subtle glow effect */
.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(180, 85, 230, 0.3), 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 105, 180, 0.15));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(180, 85, 230, 0.3);
    border-color: rgba(180, 85, 230, 0.4);
    background: rgba(35, 25, 50, 0.9);
}

/* Rating at the TOP */
.review-rating {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    order: 1;
}

/* Name and title BELOW rating */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    order: 2;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(180, 85, 230, 0.4);
    object-fit: cover;
    box-shadow: 0 0 15px rgba(180, 85, 230, 0.3);
    background: rgba(25, 18, 40, 0.8);
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Inter', sans-serif;
}

.review-info p {
    font-size: 14px;
    color: #D8C3E8;
    margin: 0;
    font-weight: 500;
    opacity: 0.8;
}

/* Review text - QUOTE at the BOTTOM */
.review-text {
    color: #E6D4F5;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    order: 3;
    margin-top: auto;
}

/* Review text quote styling */
.review-text::before {
    content: '"';
    color: #B455E6;
    font-size: 24px;
    margin-right: 5px;
}

.review-text::after {
    content: '"';
    color: #B455E6;
    font-size: 24px;
    margin-left: 5px;
}

/* FIXED ANIMATION: Start from right, scroll left, seamless loop */
@keyframes floatReviews {
    0% {
        transform: translateX(100%); /* Start from right (just off-screen) */
    }
    100% {
        /* Move to left (off-screen) - calculate based on total width */
        transform: translateX(calc(-100% - 25px));
    }
}

/* Stats section */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 30px 20px;
    background: rgba(35, 25, 50, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    width: calc(100% - 40px);
    max-width: 1200px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 25px 30px;
    background: rgba(25, 18, 40, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 85, 230, 0.4);
    box-shadow: 0 15px 40px rgba(180, 85, 230, 0.3);
}

.stat-item h3 {
    font-size: 42px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #B455E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: #D8C3E8;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .review-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 20px 25px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .review-card {
        width: 320px;
    }
}

@media (max-width: 992px) {
    #reviews {
        margin: 120px 0;
        padding: 60px 0;
    }
    
    .reviews-title-container .section-title {
        font-size: 40px;
    }
    
    .review-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 20px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    #reviews {
        margin: 80px 0;
        padding: 40px 0;
    }
    
    .reviews-title-container .section-title {
        font-size: 36px;
    }
    
    .reviews-title-container .info-pro p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .review-card {
        width: 280px;
        padding: 20px;
    }
    
    .reviews-track {
        gap: 15px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .review-info h4 {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
    
    /* Adjust animation for mobile */
    @keyframes floatReviews {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(calc(-100% - 15px));
        }
    }
}

@media (max-width: 480px) {
    .reviews-title-container .section-title {
        font-size: 32px;
    }
    
    .review-card {
        width: 260px;
        padding: 15px;
    }
    
    .review-rating {
        font-size: 20px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
}
/* ================= ADMIN PANEL ================= */
#admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(25, 18, 40, 0.95) 0%, rgba(25, 18, 40, 1) 100%),
        radial-gradient(circle at 70% 80%, rgba(40, 30, 55, 0.9) 0%, transparent 70%);
    z-index: 99999;
    overflow-y: auto;
}

.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.admin-login-box {
    background: rgba(35, 25, 50, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(180, 85, 230, 0.2);
}

.admin-login-box h2 {
    color: #B455E6;
    margin-bottom: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.admin-login-box .form-group {
    margin-bottom: 25px;
}

.admin-login-box input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(25, 18, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #F5EFF7;
    font-size: 16px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.admin-login-box input:focus {
    outline: none;
    border-color: #B455E6;
    box-shadow: 0 0 30px rgba(180, 85, 230, 0.3);
}

.admin-login-box .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.admin-login-box .btn:hover {
    box-shadow: 0 0 50px rgba(180, 85, 230, 0.5);
    transform: translateY(-2px);
}

.login-hint {
    color: #D8C3E8;
    font-size: 12px;
    margin-top: 20px;
    opacity: 0.7;
}

.admin-dashboard {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-header h1 {
    color: #B455E6;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.admin-header .btn {
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.admin-header .btn:hover {
    box-shadow: 0 0 40px rgba(180, 85, 230, 0.4);
    transform: translateY(-2px);
}

.admin-content {
    display: grid;
    gap: 30px;
}

.admin-section {
    background: rgba(35, 25, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(20px);
}

.admin-section h3 {
    color: #FFFFFF;
    margin-bottom: 25px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #D8C3E8;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(25, 18, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #F5EFF7;
    font-size: 14px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B455E6;
    box-shadow: 0 0 25px rgba(180, 85, 230, 0.3);
}

.btn-small {
    background: linear-gradient(135deg, #B455E6 0%, #FF69B4 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    font-weight: 600;
}

.btn-small:hover {
    box-shadow: 0 0 30px rgba(180, 85, 230, 0.4);
    transform: translateY(-2px);
}

.reviews-list {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reviews-list h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

#reviews-list-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

#reviews-list-container .review-card {
    min-width: auto;
    margin-bottom: 15px;
    background: rgba(25, 18, 40, 0.7);
}

.admin-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .home, .about, .gallery, #reviews {
        margin: 120px 100px;
    }
    
    .home img {
        width: 450px;
        height: 450px;
    }
    
    .photo-container img {
        width: 300px;
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
        height: 350px;
    }
    
    .gallery-item:nth-child(2) {
        height: 350px;
    }
    
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        height: 250px;
    }
    
    .review-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 20px 25px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .home-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .home img {
        width: 400px;
        height: 400px;
        margin-left: 0; /* Reset for mobile */
        margin-right: auto;
    }
    
    .about-info2 {
        flex-direction: column;
        gap: 2rem;
    }
    
    .photo-container img {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .home, .about, .gallery, #reviews {
        margin: 80px 30px;
    }
    
    .home img {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin-left: 0;
        margin-right: auto;
    }
    
    .img-about img {
        width: 70px;
        height: 70px;
    }
    
    .photo-container img {
        width: 250px;
        height: 250px;
    }
    
    .tape1 {
        top: -20px;
        left: 40px;
    }
    
    .tape2 {
        bottom: -20px;
        right: 40px;
    }
    
    .gallery-header h1 {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 300px !important;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .review-card {
        width: 280px;
        padding: 20px;
    }
    
    .reviews-track {
        gap: 15px;
        animation-duration: 30s;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .review-info h4 {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
    
    .admin-dashboard {
        padding: 15px;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .admin-actions .btn {
        width: 100%;
    }
    
    .close-modal {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .modal-nav {
        padding: 0 15px;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .info-home h1 {
        font-size: 48px;
    }
    
    .info-home h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .home img {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    .photo-container img {
        width: 220px;
        height: 220px;
    }
    
    .tape1 {
        top: -15px;
        left: 30px;
    }
    
    .tape2 {
        bottom: -15px;
        right: 30px;
    }
    
    .img-about img {
        width: 60px;
        height: 60px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}