/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    animation: heartbeat 2s infinite;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #e91e63;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown .dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #e91e63, #ff6b6b);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu a:hover::after {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: #e91e63;
    color: white;
}

.btn-primary:hover {
    background: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Floating Hearts */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.heart:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.heart:nth-child(3) {
    left: 70%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.heart:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
    animation-duration: 7s;
}

.heart:nth-child(5) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 11s;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-family: 'Dancing Script', cursive;
}

/* Sorry Section */
.sorry-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.sorry-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sorry-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    max-width: 100%;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    margin-top: 2rem;
    text-align: right;
}

.heart-container {
    text-align: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
    animation: heartbeat 2s infinite;
}

/* Memories Section */
.memories-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Poems Section */
.poems-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
    overflow: hidden;
}

.poems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.1)">💕</text></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    pointer-events: none;
}

.poems-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.poems-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.poems-container.two-poems {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.poems-container.two-poems .full-poem {
    flex: 1;
    max-width: none;
    margin: 0;
}

.poem-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.poem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.poem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.poem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.poem-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #e91e63;
    margin: 0;
    font-weight: 700;
}

.poem-date {
    background: linear-gradient(135deg, #e91e63, #ff6b6b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.poem-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.poem-content p {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.poem-content p:hover {
    color: #e91e63;
    transform: translateX(5px);
}

.poem-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.poem-footer i {
    font-size: 1.5rem;
    color: #e91e63;
    animation: heartbeat 2s infinite;
}

/* Full poem card styling */
.full-poem {
    max-width: 600px;
    margin: 0 auto;
}

.full-poem .poem-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.full-poem .poem-content p {
    margin-bottom: 0.6rem;
}

/* Two poems side by side */
.poems-container.two-poems {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
}

.poems-container.two-poems .full-poem {
    max-width: none;
    margin: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive design for poems */
@media (max-width: 768px) {
    .poems-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .poems-container.two-poems {
        flex-direction: column;
    }
    
    .poem-card {
        padding: 1.5rem;
    }
    
    .poem-title {
        font-size: 1.5rem;
    }
    
    .poems-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .full-poem .poem-content {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.memories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Dressup Section */
.dressup-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

/* Cat Game */
.cat-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.cat-wrapper {
    display: grid;
    grid-template-columns: 520px minmax(320px, 1fr);
    gap: 2rem;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cat-canvas {
    background: rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 520px;
}

.cat-canvas canvas {
    display: block;
    width: 100%;
    height: auto;
}

.cat-panel {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 520px;
}

.cat-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cat-stats .stat {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 0.75rem;
}

.cat-stats .stat.small span { font-size: 0.9rem; }
.cat-stats .stat span { font-weight: 600; color: #333; }

.bar {
    background: #f0f3f9;
    border-radius: 9999px;
    height: 12px;
    overflow: hidden;
}
.bar .fill {
    background: linear-gradient(90deg, #4caf50, #81c784);
    height: 100%;
    width: 50%;
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.cat-actions .btn { padding: 0.6rem 0.9rem; }

.cat-extras { display: flex; gap: 0.5rem; }

.quests { background: #f9fbff; border: 1px solid #e6eaf3; border-radius: 12px; padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.quests-header { display: flex; align-items: center; justify-content: space-between; }
.quests h3 { font-size: 1rem; margin: 0; }
.quest-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.95rem; }
.quest-info { font-size: 0.85rem; color: #666; }

.shop { background: #fff; border: 1px solid #e6eaf3; border-radius: 12px; padding: 0.75rem 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.shop-header { display: flex; justify-content: space-between; align-items: baseline; }
.shop-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem; }
.shop-item { position: relative; border: 1px solid #e6eaf3; border-radius: 12px; padding: 0.75rem; background: #f9fbff; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.shop-item .badge { position: absolute; top: 8px; right: 8px; background: #ffca28; color: #333; padding: 0.2rem 0.4rem; border-radius: 8px; font-size: 0.75rem; }
.shop-item .item-title { font-size: 0.95rem; font-weight: 600; }
.shop-item .shop-btn { padding: 0.45rem 0.75rem; }

@media (max-width: 900px) {
    .cat-wrapper { grid-template-columns: 1fr; gap: 1rem; }
    .cat-canvas { width: 100%; }
    .cat-panel { width: 100%; max-width: 100%; }
}

.dressup-wrapper {
    display: grid;
    grid-template-columns: 520px minmax(320px, 1fr);
    gap: 2rem;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.dressup-canvas {
    background: rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 520px;
}

.dressup-canvas canvas {
    display: block;
    width: 100%;
    height: auto;
}

.dressup-controls {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 520px;
    width: 520px;
    align-self: start;
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.control-row {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.control-label {
    display: block;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    border: 1px solid #e3e6ef;
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dressup-controls .btn {
    padding: 0.45rem 0.5rem;
    min-width: 42px;
    justify-content: center;
}

.control-row .btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid #e3e6ef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    justify-self: center;
    align-self: center;
}

/* Prevent grid children from overflowing on some mobile Chrome builds */
.control-row > * { min-width: 0; }

.action-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .dressup-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .dressup-canvas {
        width: 100%;
    }
    .dressup-section {
        padding: 4rem 0;
    }
    .dressup-controls {
        width: 100%;
        max-width: 100%;
        max-height: 70vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        padding: 1rem;
        gap: 0.75rem;
    }
    .control-row {
        grid-template-columns: 44px 1fr 44px;
    }
    .dressup-controls .btn,
    .control-row .btn {
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
    }
    .control-label {
        font-size: 0.92rem;
        padding: 0.5rem 0.6rem;
    }
    .action-row {
        justify-content: center;
        position: sticky;
        bottom: 0;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(6px);
        padding: 0.5rem;
        border-top: 1px solid #eaeaea;
        box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
        z-index: 5;
    }
}

@media (max-width: 430px) {
    .control-row {
        grid-template-columns: 40px 1fr 40px;
    }
    .dressup-controls .btn,
    .control-row .btn {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    .control-label {
        font-size: 0.9rem;
        padding: 0.45rem 0.5rem;
    }
    .dressup-controls {
        max-height: 60vh;
    }
    .action-row {
        padding-bottom: calc(env(safe-area-inset-bottom, 0) + 8px);
    }
}

@media (max-width: 600px) {
    .control-label {
        font-size: 0.9rem;
    }
}

.toggle-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.toggle-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.control-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #e3e6ef;
    background: #fff;
}

.memory-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.memory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.memory-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.memory-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.memory-card p {
    color: #666;
    line-height: 1.6;
    min-height: 3.2em;
}

/* Promise Section */
.promise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.promises {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.promise-item i {
    font-size: 1.5rem;
    color: #4caf50;
}

/* Forgive Section */
.forgive-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
    position: relative;
}

.forgive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    z-index: -1;
}

.forgive-content {
    max-width: 600px;
    margin: 0 auto;
}

.forgive-text {
    margin-bottom: 3rem;
}

.forgive-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.forgive-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.btn-success {
    background: #4caf50;
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.btn-success:hover {
    background: #45a049;
    transform: scale(1.05);
}

.btn-danger {
    background: #f44336;
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #da190b;
}

.forgive-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease;
}

.forgive-message h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.forgive-message p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.footer-hearts i {
    color: #e91e63;
    margin: 0 0.5rem;
    animation: heartbeat 2s infinite;
}

.footer-message {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
    text-align: center;
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: heartbeat 2s infinite;
}

/* Animations */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.2rem 0;
        border-radius: 5px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sorry-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .forgive-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .memories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .memory-card {
        padding: 1.5rem;
    }
}
